RosettaCodeData/Task/Loops-Continue/Pop11/loops-continue.pop11

10 lines
146 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
lvars i;
for i from 1 to 10 do
printf(i, '%p');
if i rem 5 = 0 then
printf('\n');
nextloop;
endif;
printf(', ')
endfor;