diff --git a/makefile b/makefile new file mode 100644 index 0000000..1cf9d37 --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +default: + gcc src/*.c \ No newline at end of file diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..4649c92 --- /dev/null +++ b/src/main.c @@ -0,0 +1,5 @@ +#include + +int main(){ + printf("Hello, World!\n"); +} \ No newline at end of file