about summary refs log tree commit diff
path: root/make/examples/trivial/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'make/examples/trivial/hello.c')
-rw-r--r--make/examples/trivial/hello.c7
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 0000000000..237ad8ffe7
--- /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;
+}