file structure

This commit is contained in:
inixyz
2023-08-02 13:17:16 +03:00
parent 355cebfd98
commit 56b88c42fc
2 changed files with 7 additions and 0 deletions

2
makefile Normal file
View File

@@ -0,0 +1,2 @@
default:
gcc src/*.c

5
src/main.c Normal file
View File

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