From f8b61b1508264eeb3a7a391bfac7630606550f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> Date: Sun, 23 Jun 2024 00:19:31 +0300 Subject: [PATCH] feat: :sparkles: hello-world --- .gitignore | 1 + 001-hello_world/main.c | 5 +++++ run | 5 +++++ 3 files changed, 11 insertions(+) create mode 100644 001-hello_world/main.c create mode 100755 run diff --git a/.gitignore b/.gitignore index c6127b3..89c27ad 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,7 @@ *.dylib # Executables +*.bin *.exe *.out *.app diff --git a/001-hello_world/main.c b/001-hello_world/main.c new file mode 100644 index 0000000..ad7cc9f --- /dev/null +++ b/001-hello_world/main.c @@ -0,0 +1,5 @@ +#include + +int main() { + printf("Hello World\n"); +} \ No newline at end of file diff --git a/run b/run new file mode 100755 index 0000000..dc077f8 --- /dev/null +++ b/run @@ -0,0 +1,5 @@ +#!/bin/bash +gcc main.c -o main.bin +./main.bin +read input +clear \ No newline at end of file