RosettaCodeData/Task/Loops-N-plus-one-half/PL-I/loops-n-plus-one-half.pli
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
87 B
Text

do i = 1 to 10;
put edit (trim(i)) (a);
if i < 10 then put edit (', ') (a);
end;