linkname "printf" int printf(char+> fmt, ...*); () test() { printf("hello\n"); printf("hello %s\n", "world"); printf("hello %s\n", "world" as char+>); printf("hello %d\n", 123); // FIXME uses smallest possible type! should generate an error! printf("hello %d\n", 123 as int); printf("hello %p\n", none as any^?); }