#include <u.h> #include <libc.h> void main() { print("Hello, world ☺\n"); exits(0); }
$ 9c hello.c $ 9l hello.o -o hello $ ./hello Hello, world ☺