aboutsummaryrefslogtreecommitdiff
path: root/hello.c
diff options
context:
space:
mode:
authorrayi512x <[email protected]>2026-09-20 16:02:22 +0700
committerrayi512x <[email protected]>2026-09-20 16:02:22 +0700
commit195adf6e4664b2e7c15336e6904637325df9ab3c (patch)
treec74c1a2fa23fccf521f689d27f5df592a8d9d6ec /hello.c
parent1d0e3d0f16ad78b80f4dedcb49d2e62cc74b6e61 (diff)
Add hello.c and rename readme
Diffstat (limited to 'hello.c')
-rw-r--r--hello.c6
1 files changed, 6 insertions, 0 deletions
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 <stdio.h>
+
+int main(void) {
+ printf("Hello, world!\n");
+ return 0;
+}