RosettaCodeData/Task/Loops-Continue/Maple/loops-continue-1.maple
2023-07-01 13:44:08 -04: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: