const main = fn() s32 { var i: s32 = 0; const j: s32 = 5; for (0..10) |_| { if (i == j) { break; } i += 1; } return i - j; }