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

7 lines
65 B
Plaintext

var i := 0;
repeat
Inc(i);
PrintLn(i);
until i mod 6 = 0;