RosettaCodeData/Task/Loops-Do-while/Modula-3/loops-do-while.mod3

5 lines
62 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
REPEAT
i := i + 1;
IO.Put(Fmt.Int(i));
UNTIL i MOD 6 = 0;