main.toy (109B)
1 fn helper(v: i64): i64 { 2 let n: i64 = v + 2; 3 return n; 4 } 5 6 fn main(): i32 { 7 return helper(40) as i32; 8 }