/********************************************************
 * hello -- program to print out "Hello World".		*
 *	Not an especially earth-shattering program.	*
 *							*
 * Author: Steve Oualline				*
 *							*
 * Purpose: Demonstration of a simple program		*
 *							*
 * Usage:						*
 *	Run the program and the message appears		*
 ********************************************************/
#include <iostream.h>
main()
{
    // Tell the world hello
    cout << "Hello World\n";
    return (0);
}

