6 lines
82 B
Text
6 lines
82 B
Text
for i =1 to 10
|
|
print i;
|
|
if i =10 then exit for
|
|
print ", ";
|
|
next i
|
|
end
|