1 2 3 4 5 6 7 8
#include <iostream> #include <unistd.h> int main() { sleep(5); std::cout << "Hello world!\n"; return 0; }