diff --git a/makefile b/makefile new file mode 100644 index 0000000..d3aa0af --- /dev/null +++ b/makefile @@ -0,0 +1,3 @@ +incest: + g++ ./src/main.cpp -o out + ./out diff --git a/out b/out new file mode 100755 index 0000000..3127484 Binary files /dev/null and b/out differ diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..adbdf65 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "damn, thats too long" << std::endl; + return 0; +} \ No newline at end of file