RosettaCodeData/Task/Loops-Do-while/HolyC/loops-do-while.holyc
2017-09-25 22:28:19 +02:00

5 lines
66 B
Text

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