#include #include int main() { const char *text = "Hello world!\n"; write(STDOUT_FILENO, text, strlen(text)); return 0; }