1 2 3 4 5 6 7 8 9
extern printf = (ptr, i64) => i64; let main = () => i64 { let s = "hello"; printf("%s", s); return 0; };