RosettaCodeData/Task/Loops-Do-while/Maple/loops-do-while.maple

9 lines
140 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
val := 0:
do
val := 1 + val;
print( val );
if irem( val, 6 ) = 0 then
break
end if;
end do: