home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c021 / 7.img / EXAMPLES.ZIP / EX1.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  180 b   |  10 lines

  1. // ex1.cpp:   A First Glance
  2. // from Chapter 6 of Getting Started
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.    cout << "Frankly, my dear...\n";
  8.    cout << "C++ is a better C.\n";
  9. }
  10.