home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / languages / c / gnu_c / Examples / cc / HelloW++
Encoding:
Text File  |  1994-10-04  |  99 b   |  10 lines

  1. #include <iostream.h>
  2.  
  3. int
  4. main(void)
  5.  
  6. {
  7.   cout << "Hello world (from C++)" << endl;
  8.   return 0;
  9. }
  10.