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