range

Settable:
no
Arguments:
integer, integer
Return Value:
integer array

Creates and returns an integer array with all the integers in the given range. This can be used to execute something multiple times; for instance, if you want %c to call the custom function immolate() 5 times a round, you COULD say

   foreach([1,2,3,4,5],%1,immolate())
or instead could say
   foreach(range(1,5),%1,immolate())

This can be quite convenient if instead of 5 the number of desired iterations is 50.