init project

This commit is contained in:
hippoz 2021-04-27 21:37:32 +03:00
parent 815d009b16
commit 7d7cac5eac
Signed by: hippoz
GPG key ID: 7C52899193467641
3 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*.out

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
CC = gcc
main.out: main.c
$(CC) -o main.out main.c
clean:
@rm main.out

7
main.c Normal file
View file

@ -0,0 +1,7 @@
#include <stdio.h>
int main() {
printf("hello");
return 0;
}