From a22a7acaa12500b4568557b06a839aa5e6339318 Mon Sep 17 00:00:00 2001 From: hakkeri Date: Sun, 28 Dec 2025 00:29:44 +0000 Subject: [PATCH] Add hello.c --- hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..10ee238 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include + +int main(void) { + printf("Hello, World!\n"); + return 0; +} \ No newline at end of file