RosettaCodeData/Task/Loops-Do-while/GAP/loops-do-while.gap
2023-07-01 13:44:08 -04:00

5 lines
75 B
Text

n := 0;
repeat
n := n + 1;
Print(n, "\n");
until RemInt(n, 6) = 0;