RosettaCodeData/Task/Loops-Do-while/Modula-3/loops-do-while.mod3
2023-07-01 13:44:08 -04:00

4 lines
62 B
Text

REPEAT
i := i + 1;
IO.Put(Fmt.Int(i));
UNTIL i MOD 6 = 0;