commit a09beb05ce70b8aaf6a8a4bf632b248b1c2cddc7 Author: starbitdev Date: Tue Feb 11 01:30:18 2025 -0500 Initial commit 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; +}