# include # include using namespace std; int main ( int argc, char *argv[] ); //****************************************************************************80 int main ( int argc, char *argv[] ) //****************************************************************************80 // // Purpose: // // MAIN is the main program for HELLO. // // Discussion: // // HELLO is a very simple C++ program. // // Licensing: // // This code is distributed under the GNU LGPL license. // // Modified: // // 13 March 2004 // // Author: // // John Burkardt // { cout << "\n"; cout << "HELLO:\n"; cout << " C++ version.\n"; cout << "\n"; cout << " Hello, world!\n"; return 0; }