diff options
| -rw-r--r-- | README | 1 | ||||
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | hello.c | 6 |
3 files changed, 7 insertions, 1 deletions
@@ -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! @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main(void) { + printf("Hello, world!\n"); + return 0; +} |
