RosettaCodeData/Task/Loops-Break/HolyC/loops-break.holyc
2023-07-01 13:44:08 -04:00

10 lines
128 B
Text

U16 a, b;
while (1) {
a = RandU16 % 20;
Print("%d\n", a);
if (a == 10) break;
b = RandU16 % 20;
Print("%d\n", b);
}