/*******************************************************************************
  hello.cpp
  Neil C. Obremski
  23 JAN 1999

  Simple program which outputs "Hello World!" to the screen.
*******************************************************************************/

#include <iostream.h>                   // I/O stream header for 'cout'

int main()                              // declare main function
{
  cout << "Hello World!" << endl;       // displays "Hello World" with a
                                        // carriage return to next line down

  return 0;                             // this means its a normal termination
                                        // (program ended as planned)
}

/******************************* end of program *******************************/