RosettaCodeData/Task/Loops-Do-while/DWScript/loops-do-while.dw

7 lines
65 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
var i := 0;
repeat
Inc(i);
PrintLn(i);
until i mod 6 = 0;