Initial commit

This commit is contained in:
2025-02-11 01:30:18 -05:00
commit a09beb05ce
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# hello-world
A test repository to make sure the gitea server works
+6
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Hello World!\n");
return 0;
}