7 lines
66 B
Text
7 lines
66 B
Text
|
|
for i = 1 to 10
|
||
|
|
print i;
|
||
|
|
if i < 10 then print ", ";
|
||
|
|
next i
|
||
|
|
|
||
|
|
end
|