5 lines
94 B
Text
5 lines
94 B
Text
for i=1 to 10 do
|
|
printf(1,"%d",i)
|
|
if i=10 then exit end if
|
|
printf(1,", ")
|
|
end for
|