10 lines
136 B
Plaintext
10 lines
136 B
Plaintext
fn[cc(.c)] main[export]() s32 {
|
|
>i: s32 = 0;
|
|
>top: s32 = 10;
|
|
while (i < top) {
|
|
i += 1;
|
|
}
|
|
|
|
return i - top;
|
|
}
|