initial commit

This commit is contained in:
Zvonimir Rudinski
2023-12-16 16:34:15 +01:00
commit 34836f46f8
3 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
todd

1
build.sh Normal file
View File

@@ -0,0 +1 @@
cc main.c -o todd

7
main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello, world!\n");
return 0;
}