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