init commit

This commit is contained in:
2026-02-23 10:52:53 -05:00
commit 72fc937e04
2 changed files with 12 additions and 0 deletions

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Hello World
Testing gitea public repo

9
main.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
int main(void)
{
const char *hello = "Hello, World!";
printf("%s\n", hello);
return 0;
}