RosettaCodeData/Task/Loops-For-with-a-specified-step/Lingo/loops-for-with-a-specified-step.lingo
2016-12-05 23:44:36 +01:00

5 lines
71 B
Text

step = 3
repeat with i = 0 to 10
put i
i = i + (step-1)
end repeat