RosettaCodeData/Task/Loops-Continue/Maple/loops-continue-1.maple
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
182 B
Text

for i from 1 to 10 do
printf( "%d", i );
if irem( i, 5 ) = 0 then
printf( "\n" );
next
end if;
printf( ", " )
end do: