def main() -> u32 { u32 mut a = 0; for u32 i in 0..5 { a = a + i; } // return i; <- not allowed return a; }