home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / bloodshed / devcpp-4.9.9.2_setup.exe / Templates / Hello_cpp.txt < prev    next >
Text File  |  2003-02-12  |  200b  |  12 lines

  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main (int argc, char *argv[])
  6. {
  7.   cout << "Hello World!" << endl;
  8.   cout << "Press ENTER to continue..." << endl; 
  9.   cin.get();
  10.   return 0;
  11. }
  12.