Arrays can now be declared separately from it’s definition. So
1 2 |
int[] vals; vals = {23,24,25}; |
will now work.
I’ve also added two new operators; “array push front”, which looks like
-> , and “array push back” which looks like
<- . The idea is that it’s pointing from the left to the left-most element, meaning push front and the alternative pointing from the right to the right-most element.
Next; because arrays are now effectively dynamically sized, I need some inherent way to find the size of an array. Like a .size member or something…