RosettaCodeData/Task/Loops-Break/HolyC/loops-break.holyc
2018-06-22 20:57:24 +00: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);
}