diff --git a/helloWorld.cpp b/helloWorld.cpp new file mode 100644 index 0000000..20a6c45 --- /dev/null +++ b/helloWorld.cpp @@ -0,0 +1,9 @@ +//CPP +#include +using namespace std; + +int main() +{ + cout << "Hello, World!"; + return 0; +}