home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / stdcpp / test / hello.cc next >
Encoding:
C/C++ Source or Header  |  2000-01-15  |  159 b   |  13 lines

  1. // Hello, World in C++
  2.  
  3. #include <iostream.h>
  4. #include <stdlib.h>
  5.  
  6. int main(void)
  7. {
  8.   cout << "Hello, World" << endl;
  9.  
  10.   sleep (60);
  11.   return 0;
  12. }
  13.