/* Hello.cpp CIS 150 Dave Klick 2017-01-18 Basic C++ output. */ #include // for: cin, cout, endl using namespace std; int main() { // endl displays a newline and flushes the output buffer cout << "Hello, world!" << endl; cout << "Press to continue... "; cin.get(); return 0; }