- or download this
array = ('a', 'b', 'c', 'd', 'e')
- or download this
for (x = 0; x != end(array); ++x)
do_something(array, x);
- or download this
[0,5)
- or download this
range(stop) # 0 .. stop-1
range(start,stop) # start .. stop-1
range(start,stop,step) # start .. stop-1 by step: for(ix=0; ix != sto
+p; ix += step) {...}