RosettaCodeData/Task/Loops-Continue/LiveCode/loops-continue.livecode

6 lines
117 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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