/*
P_HELLO.C
PLIB Hello World application
*/
#include <plib.h>
GLDEF_C INT main(VOID)
{
p_printf("Hello World");
p_getch();
return(0);
}