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

5 lines
117 B
Text

repeat with n = 1 to 10
put n
if n is 5 then put return
if n < 10 and n is not 5 then put ","
end repeat