Some new statements are to be introduced that support working on arrays. Some of them stolen from QB.
ERASE: set all elements to zero
UBOUND(): return the highest valid index (upper boundary) of an array
SWAP: trades the values of two numerical values or array elements
FOREACH ... NEXT: iterate through all elements in an array in a fast and convenient way
Some new statements are to be introduced that support working on arrays. Some of them stolen from QB.
ERASE
: set all elements to zeroUBOUND()
: return the highest valid index (upper boundary) of an arraySWAP
: trades the values of two numerical values or array elementsFOREACH ... NEXT
: iterate through all elements in an array in a fast and convenient way