ref: a351bcdccdf5a4273bc8dc3360a48fbb8b8aa9ea dir: /src/write.c/
#include <u.h> #include <libc.h> void main(int , char* []) { char msg[] = "hello\n"; int l; l = strlen(msg); write(1, msg, l); exits(nil); }