let main = () => i64 { let x = (a) => i64 { print(a); return 1; }; let y = (f) => i64 { return f(2); }; return y(x); };