/* HELLO! Welcome to the unnamed language */ extern printf = (*i8, varargs) => void; let test = () => i64 { return 2; }; let main = (argc: i64) => i64 { printf("HELLO WORLD %d!\n", argc); return test(); }; /* Expected stdout: Expected return: 7 */