diff --git a/src/hello/hello_world.cpp b/src/hello/hello_world.cpp new file mode 100644 index 0000000..ff68290 --- /dev/null +++ b/src/hello/hello_world.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World!" << std::endl; + return 0; +}