inital commit

This commit is contained in:
inixyz
2023-09-22 19:09:16 +03:00
parent 6f46f2af92
commit 2c69b0c997
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
tinyrv

View File

@@ -1,2 +1,2 @@
default: default:
gcc src/*.c gcc src/*.c -o tinyrv

View File

@@ -1 +1,5 @@
int main(){} #include <stdio.h>
int main(){
printf("Hello, World!\n");
}