5 lines
117 B
Text
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
|