//-----------------------------------------------------------------
//	hello.c
//
//	This application outputs a brief message to the console.
//
//		compile using: $ make hello 
//		execute using: $ ./hello
//
//	programmer: ALLAN CRUSE
//	written on: 23 AUG 2007
//-----------------------------------------------------------------

#include <stdio.h>		// for printf()

int main( void )
{
	printf( "\n   Hello, everybody! \n\n" );

	return	0;
}