diff options
Diffstat (limited to 'make/examples/trivial/hello.c')
-rw-r--r-- | make/examples/trivial/hello.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/make/examples/trivial/hello.c b/make/examples/trivial/hello.c new file mode 100644 index 000000000000..237ad8ffe76f --- /dev/null +++ b/make/examples/trivial/hello.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(int argc, char * * argv) +{ + printf("Hello World\n"); + return 0; +} |