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