// compile with: gcc -o hello hello.c // run with: ./hello #include int main(void) { return puts("Hello world!") == EOF; }