home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tcpp / examples / ex1.cpp < prev    next >
C/C++ Source or Header  |  1990-06-09  |  189b  |  11 lines

  1. // ex1.cpp:   Ein erster Eindruck
  2. // aus Kapitel 6 der Einführung
  3.  
  4. #include <iostream.h>
  5.  
  6. main()
  7. {
  8.    cout << "Hallo, meine Lieben...\n";
  9.    cout << "C++ ist das bessere C.\n";
  10. }
  11.