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