Creates a loop with a custom step.

STEP changes how the counter increments between each loop.

for i to j step k as ?a
istart
jfinish
kstep
?avariable
Sourcefor 1 to 10 step 3 as ?i print "i+3 = ?i" next Executioni+3 = 1 i+3 = 4 i+3 = 7 i+3 = 10

next