toaruos/userspace/hello.c
Kevin Lange c88d6dcb4f Add or update the heading comments for user apps.
Adds useful descriptions to ones that were lacking them, updates ones
that were innacurate, etc.
2012-07-06 21:08:28 -07:00

11 lines
186 B
C

/* vim:tabstop=4 shiftwidth=4 noexpandtab
*
* prints "Hello World!" to standard out.
*/
#include <stdio.h>
int main(int argc, char ** argv) {
printf("Hello World!\n");
return 0;
}