to
Basic Usage:
# Using 'to' keyword in 'for' loop to specify the range
for var i = 1 to 5 then
print(i)
endExplanation:
Step Size:
# Using 'to' with step size in 'for' loop
for var i = 0 to 10 step 2 then
show(i)
endExplanation:
Iterating Backwards:
Explanation:
Nested Loops:
Explanation:
Last updated