/* vi: set sw=4 ts=4: */ /* * hello.c - A hello world program. */ #include "toys.h" int hello_main(void) { printf("Hello world\n"); return 0; }