Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.meson.core/templates/simple/main.c')
-rw-r--r--build/org.eclipse.cdt.meson.core/templates/simple/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.meson.core/templates/simple/main.c b/build/org.eclipse.cdt.meson.core/templates/simple/main.c
new file mode 100644
index 00000000000..ad585992199
--- /dev/null
+++ b/build/org.eclipse.cdt.meson.core/templates/simple/main.c
@@ -0,0 +1,7 @@
+// Simple Hello World program
+#include <stdio.h>
+
+int main(int argc, char **argv) {
+ printf("Hello World\n");
+ return 0;
+}

Back to the top