blob: b53408209784da1f133a5d61bc67d3e2709ef881 [file] [log] [blame]
/*
* hello.c - Simple hello world program
*/
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello World\n");
return 0;
}