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

6 lines
117 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01: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