home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / gcc / 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.