From dcb722a025fce54bb770848f763e608809ca293b Mon Sep 17 00:00:00 2001 From: CristinaEU1 Date: Sun, 23 Oct 2022 21:46:55 +0300 Subject: [PATCH] CristinaEU1 --- C++ Codes/Print Hello World.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 C++ Codes/Print Hello World.cpp diff --git a/C++ Codes/Print Hello World.cpp b/C++ Codes/Print Hello World.cpp new file mode 100644 index 0000000..6936630 --- /dev/null +++ b/C++ Codes/Print Hello World.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; +int main() { + cout << "Hello, World!" << endl; // This prints Hello, World! :) + return 0; +} \ No newline at end of file