diff --git a/HelloWorldC++.cpp b/HelloWorldC++.cpp new file mode 100644 index 0000000..b3c7ec3 --- /dev/null +++ b/HelloWorldC++.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; +int main() +{ + cout << "Hello world"; + return 0; +}