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

10 lines
146 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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;