#include #include #include //for the function std::chrono::seconds #include //for the function std::this_thread::sleep_for using namespace std; //Loop forever. Between the two semicolons, there is nothing to stop the loop. int main() { for (;;) { //Still need both 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; }