From 2c69b0c997191eb41dc903591cacf4e068d69f07 Mon Sep 17 00:00:00 2001 From: inixyz Date: Fri, 22 Sep 2023 19:09:16 +0300 Subject: [PATCH] inital commit --- .gitignore | 1 + makefile | 2 +- src/main.c | 6 +++++- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .gitignore 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"); +}