diff --git a/cpp/abc_hello_world.cpp b/cpp/abc_hello_world.cpp new file mode 100644 index 0000000..90bb84a --- /dev/null +++ b/cpp/abc_hello_world.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main(){ + +cout << "hello world" << endl; +return 0; +}