RosettaCodeData/Task/Loops-Continue/Pop11/loops-continue.pop11
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
146 B
Text

lvars i;
for i from 1 to 10 do
printf(i, '%p');
if i rem 5 = 0 then
printf('\n');
nextloop;
endif;
printf(', ')
endfor;