From 6df913def7d6ea7dd765b776d49c04592f030153 Mon Sep 17 00:00:00 2001 From: FelPrim Date: Sat, 27 Dec 2025 16:45:51 +0300 Subject: [PATCH] setup1 --- hello_world/hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world/hello.c diff --git a/hello_world/hello.c b/hello_world/hello.c new file mode 100644 index 0000000..a1cd8b3 --- /dev/null +++ b/hello_world/hello.c @@ -0,0 +1,6 @@ +int puts(char *str); + +int main(){ + puts("Hello, World!"); + return 0; +}