loop( start, end )
for (int x = start; x < end; x++)
If you want a floating point array, or one with a non-unit step,
you can use the three-parameter version of
the loop function.
See also the sequence functions.
start (integer)end (integer)end-start (or 0) elements
(start, start+1, start+2, ..., end-1)loop(0, 5) = (0, 1, 2, 3, 4)loop(5, 0) = ()int[] loop(int, int)