/*******************************************************************************
*
*   This is the "classic" first program.
*
*******************************************************************************/

#include <stdio.h>

int main( void )
{
    printf( "Hello World\n" );

    return 0;
}
