From 72fc937e04e378f8dcf8a20d7d63666a0937f301 Mon Sep 17 00:00:00 2001 From: Nicholas Surmava Date: Mon, 23 Feb 2026 10:52:53 -0500 Subject: [PATCH] init commit --- README.md | 3 +++ main.c | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 README.md create mode 100644 main.c diff --git a/README.md b/README.md new file mode 100644 index 0000000..8d524c2 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Hello World + +Testing gitea public repo diff --git a/main.c b/main.c new file mode 100644 index 0000000..5aee63e --- /dev/null +++ b/main.c @@ -0,0 +1,9 @@ +#include + +int main(void) +{ + const char *hello = "Hello, World!"; + printf("%s\n", hello); + + return 0; +} \ No newline at end of file