range (integer max[, integer min]) ⇒ list
Generates a list of integers ranging from the minimum to the maximum.
First available: Version 1.4.1.0
Using the range function like Python
The range
function is designed to simulate what Python does with its
range predefined function. The following example shows this:
YASS
for each($value in range(0, 10)) print($value) end for
Comments