RosettaCodeData/Task/Loops-Do-while/HolyC/loops-do-while.holyc

6 lines
66 B
Plaintext

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