From 195adf6e4664b2e7c15336e6904637325df9ab3c Mon Sep 17 00:00:00 2001 From: rayi512x Date: Sun, 20 Sep 2026 16:02:22 +0700 Subject: Add hello.c and rename readme --- README | 1 + README.md | 1 - hello.c | 6 ++++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 README delete mode 100644 README.md create mode 100644 hello.c 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..f65fc66 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include + +int main(void) { + printf("Hello, world!\n"); + return 0; +} -- cgit v1.2.3