Range
The Range type represents a range of numbers. It is normally used with a for
loop.
Create a range using the Range
or RangeInclusive functions.
for i in Range(0, 5) { } // iterates over the sequence 0, 1, 2, 3, 4
for i in in RangeInclusive(0, 5) // iterates over the sequence 0, 1, 2, 3, 4, 5