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

  1. // Game Over
  2. // A first C++ program
  3.  
  4. #include <iostream>
  5.  
  6. int main()
  7. {
  8.     std::cout << "Game Over!" << std::endl;
  9.     return 0;
  10. }
  11.  
  12.