home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / test / hello.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-04  |  107 b   |  8 lines

  1. #include <iostream.h>
  2.  
  3. int main(int argc, char **argv)
  4. {
  5.   cout << "Hello, world!\n";
  6.   return 0;
  7. }
  8.