1 2 3 4 5 6 7 8 9 10 11 12
let main = () => { let x = (a) => { print(a); return 1; }; let y = (f) => { return f(2); }; return y(x); };