1 2 3 4 5 6 7 8
let print_int = (n: i32) => i32 { print(n); return n; }; let main = (argc: i32) => i32 { return print_int(argc); };