Add template makefile, main.c

This commit is contained in:
TrainDoctor 2022-08-09 20:19:11 -07:00
commit 27bc7aa746
3 changed files with 23 additions and 0 deletions

5
backend/src/main.c Normal file
View file

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