feat: hello-world

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-06-23 00:19:31 +03:00
parent 644f83810e
commit f8b61b1508
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View file

@ -29,6 +29,7 @@
*.dylib
# Executables
*.bin
*.exe
*.out
*.app

5
001-hello_world/main.c Normal file
View file

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

5
run Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
gcc main.c -o main.bin
./main.bin
read input
clear