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