5 lines
78 B
Text
5 lines
78 B
Text
|
|
for i =1 to 10
|
||
|
|
if i mod 5 <>0 then print i; ", "; else print i
|
||
|
|
next i
|
||
|
|
end
|