RosettaCodeData/Task/Loops-N-plus-one-half/Phix/loops-n-plus-one-half.phix
2016-12-05 23:44:36 +01:00

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