Kris Scrab
Results
2
issues of
Kris Scrab
Being able to allocate arrays dynamically without relying on a script extender wrapper functions, ```papyrus int i = 4 int[] a = new int[i] ````
enhancement
lexer
backend
language-addition
Currently the only way to initialize an array at size n with compile time values is to do ```papyrus int[] a = new int[2] a[0] = 5 a[1] = 10...
enhancement
lexer
parser
language-addition