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