Initial commit

This commit is contained in:
2026-01-14 16:25:52 -08:00
commit e0d8693840
5 changed files with 707 additions and 0 deletions

6
src/main.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(int argc, const char **argv) {
printf("Hello World\n");
return 0;
}