home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / source / chapter05 / instructions.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2004-04-11  |  399 b   |  26 lines

  1. // Instructions
  2. // Demonstrates writing new functions
  3.  
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8. // function prototype (declaration)
  9. void instructions();
  10.  
  11. int main()
  12. {
  13.     instructions();
  14.  
  15.     return 0;
  16. }
  17.  
  18. // function definition
  19. void instructions()
  20. {
  21.     cout << "Welcome to the most fun you've ever had with text!\n\n";
  22.     cout << "Here's how to play the game...\n";
  23. }
  24.  
  25.  
  26.