home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 March / apc431.iso / workshop / general / hello.cpp next >
Encoding:
C/C++ Source or Header  |  1998-12-21  |  628 b   |  20 lines

  1. // **************************************************************
  2. // hello.cpp
  3. // Example program for Simple C++
  4. //
  5. // (c) 1998 Emmenjay Consulting Pty Ltd                          
  6. //                                                               
  7. // History                                                       
  8. // 22/12/98 MJS  Initial Coding.                                 
  9. //                                                               
  10. // **************************************************************
  11.  
  12. #include <iostream>
  13.  
  14. int main()
  15. {
  16.     std::cout << "Hello C++ Enthusiasts!\n";
  17.  
  18.     return 0;
  19. }
  20.