RosettaCodeData/Task/Loops-For-with-a-specified-step/Lingo/loops-for-with-a-specified-step.lingo
2023-07-01 13:44:08 -04:00

5 lines
71 B
Text

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