#include #include #include //for chrono::seconds #include //for this_thread::sleep_for using namespace std; //Loop forever. There is nothing to stop the loop. int main() { for (;;) { //still need parentheses and both semicolons cout << "It was a dark and stormy night.\n" "Some Indians were sitting around a campfire.\n" "Then their chief rose and said,\n\n"; //Sleep for 3 seconds. this_thread::sleep_for(chrono::seconds(3)); } return EXIT_SUCCESS; }