From 02c9041d0ec09cc33f4b9dd7d36b9b131a977754 Mon Sep 17 00:00:00 2001 From: KIX Date: Sat, 18 Oct 2025 04:07:34 -0400 Subject: [PATCH] hello world prog --- hello_world.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello_world.c diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..1fc8245 --- /dev/null +++ b/hello_world.c @@ -0,0 +1,8 @@ +#include + +int main(int argc, char **argv) +{ +printf("Hello World >=<\n"); + return 0; +} +