RosettaCodeData/Task/Loops-Continue/Lingo/loops-continue.lingo
2023-07-01 13:44:08 -04:00

10 lines
163 B
Text

str = ""
repeat with i = 1 to 10
put i after str
if i mod 5 = 0 then
put RETURN after str
next repeat
end if
put ", " after str
end repeat
put str