Help for this page

Select Code to Download


  1. or download this
    array = ('a', 'b', 'c', 'd', 'e')
    
  2. or download this
    for (x = 0; x != end(array); ++x)
      do_something(array, x);
    
  3. or download this
    [0,5)
    
  4. 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) {...}