home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / source / chapter01 / game_over_2.cpp < prev    next >
C/C++ Source or Header  |  2003-09-05  |  164b  |  13 lines

  1. // Game Over 2.0
  2. // Demonstrates a using directive
  3.  
  4. #include <iostream>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     cout << "Game Over!" << endl;
  10.     return 0;
  11. }
  12.  
  13.