Source of TestStuff12.cpp


  1: //TestStuff12.cpp

  2: //Thursday, Feb 27, 2014

  3: 
  4: #include <iostream>

  5: using namespace std;
  6: 
  7: int main()
  8: {
  9:     cout << "Hello, world!" << endl;
 10:     cout << "Press Enter to continue ... "; cin.ignore(80, '\n');
 11: }