From a09beb05ce70b8aaf6a8a4bf632b248b1c2cddc7 Mon Sep 17 00:00:00 2001 From: starbitdev Date: Tue, 11 Feb 2025 01:30:18 -0500 Subject: [PATCH] Initial commit --- hello-world.md | 3 +++ hello.c | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 hello-world.md create mode 100644 hello.c diff --git a/hello-world.md b/hello-world.md new file mode 100644 index 0000000..d0092d1 --- /dev/null +++ b/hello-world.md @@ -0,0 +1,3 @@ +# hello-world + +A test repository to make sure the gitea server works diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..411b990 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include + +int main(void) { + printf("Hello World!\n"); + return 0; +}