aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README1
-rw-r--r--README.md1
-rw-r--r--hello.c6
3 files changed, 7 insertions, 1 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..cd08755
--- /dev/null
+++ b/README
@@ -0,0 +1 @@
+Hello world!
diff --git a/README.md b/README.md
deleted file mode 100644
index ea5eeb1..0000000
--- a/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# Hello world!
diff --git a/hello.c b/hello.c
new file mode 100644
index 0000000..67fc992
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char* argv[]) {
+ printf("Hello, world!\n");
+ return 0;
+}