/*
 *  Hello World for the CodeWarrior
 *  © 1996 Metrowerks Corp.
 *
 *  Questions and comments to:
 *       support@metrowerks.com
 *       http://www.metrowerks.com
 */

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

void main(void)
{
	printf ("Hello World, this is CodeWarrior!\n\n");

	srand(time(NULL));	
	printf ("This project uses the SIOUX console library: choose 'Quit' from the file menu to quit.\n\n");
	printf ("For more information on the ANSI C library and the Metrowerks additions, ");
	printf ("including SIOUX, see the C Library Reference in the Metrowerks Documentation folder.\n\n");
	
	printf ("To locate the right ANSI library for your preferences, see the CodeWarrior User's Guide.\n");
}

