2024-06-06 13:47:14 -06:00

13 lines
181 B
Plaintext

fn[cc(.c)] main[export]() s32 {
>i: s32 = 0;
>n: s32 = 5;
while (i < 10) {
i += 1;
if (i == n) {
break;
}
}
return i - n;
}