#include <iostream.h>

//******************************
// This is a sample C++ file.
// To compile it on Linux:
//    $ g++ foo.cpp
// To run it:
//    $ ./a.out
// -IAN! idallen@ncf.ca
//******************************

	int
main(void){

	cout <<"Hello World!\n";

	// This number becomes the exit status
	// of this command when it finishes:
	//
	return 0;    /* zero => good return status */
}

