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