/* c.hellow.

   The simple Hello World application.  */

#include <stdio.h>

int main (void)
{
  printf ("Hello World\n");
  return 0;
}
