add hello world program

This commit is contained in:
2025-06-27 02:27:09 -04:00
parent 36d610183f
commit 8aac5dc8b4
3 changed files with 22 additions and 0 deletions

6
src/main.c Normal file
View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Hello, world!\n");
return 0;
}