1 2 3 4 5 6 7 8 9 10 11 12
let x = () => i64 { printf("%d", 22); return 11; }; let main = () => i64 { let i = 4; print("%d", i); return x(); };