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

7 lines
65 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var i := 0;
repeat
Inc(i);
PrintLn(i);
until i mod 6 = 0;