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

5 lines
66 B
Text

U8 i = 0;
do {
i++;
Print("%d\n", i);
} while (i % 6 != 0);