diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa92975 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.out \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e92feb4 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CC = gcc + +main.out: main.c + $(CC) -o main.out main.c + +clean: + @rm main.out \ No newline at end of file diff --git a/main.c b/main.c new file mode 100644 index 0000000..797d9d8 --- /dev/null +++ b/main.c @@ -0,0 +1,7 @@ +#include + +int main() { + printf("hello"); + + return 0; +} \ No newline at end of file