Commit
da8049b36cc0e93cefaea1f3bc5ae81fbe1ff786
by peter.peqimplemented length field for sized arrays
closes #8
The arrays are not really sized, it is just that the type contains the
size. It also does not add any bounds checks, so the following code
might surprisingly print 42 and run without throwing an exception:
var ar = [42] ar[1] = 58 // out of bounds access does not change
length var sum = 0 for i = 0 to ar.length - 1
sum += ar[i] print(I2S(sum))
(commit: da8049b)