Hello World

- determine project structure
- add makefile and main function
This commit is contained in:
var
2026-03-29 20:09:56 -05:00
parent aeb0d9d9fb
commit 72d68ffa91
3 changed files with 43 additions and 54 deletions

6
src/main.c Normal file
View File

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