home *** CD-ROM | disk | FTP | other *** search
- // **************************************************************
- // hello.cpp
- // Example program for Simple C++
- //
- // (c) 1998 Emmenjay Consulting Pty Ltd
- //
- // History
- // 22/12/98 MJS Initial Coding.
- //
- // **************************************************************
-
- #include <iostream>
-
- int main()
- {
- std::cout << "Hello C++ Enthusiasts!\n";
-
- return 0;
- }
-