summaryrefslogtreecommitdiff
path: root/package/helloworld/src/helloworld.c
diff options
context:
space:
mode:
Diffstat (limited to 'package/helloworld/src/helloworld.c')
-rw-r--r--package/helloworld/src/helloworld.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/helloworld/src/helloworld.c b/package/helloworld/src/helloworld.c
new file mode 100644
index 000000000..232880377
--- /dev/null
+++ b/package/helloworld/src/helloworld.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}