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