commit e21d1337e0dfd6e4f6bb39372253b39f0ee0a8d5 Author: lucaspalomodevelop Date: Wed Nov 2 18:47:46 2022 +0100 initial commit diff --git a/cpp_1/main.cpp b/cpp_1/main.cpp new file mode 100644 index 0000000..635c7bc --- /dev/null +++ b/cpp_1/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World!"<< std::endl; + return 0; +} \ No newline at end of file diff --git a/cpp_1/makefile b/cpp_1/makefile new file mode 100644 index 0000000..9e58628 --- /dev/null +++ b/cpp_1/makefile @@ -0,0 +1,5 @@ +dev: compile run +compile: + g++ -o program main.cpp +run: + ./program \ No newline at end of file diff --git a/cpp_1/program b/cpp_1/program new file mode 100755 index 0000000..8cb0ba9 Binary files /dev/null and b/cpp_1/program differ