From f9dbe94bcf61bd51299436224c4c286b3a837ef7 Mon Sep 17 00:00:00 2001 From: Sulaiman Butt Date: Fri, 27 Oct 2023 00:07:01 +0500 Subject: [PATCH] Issue #10 solved --- CPP/hello.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CPP/hello.cpp diff --git a/CPP/hello.cpp b/CPP/hello.cpp new file mode 100644 index 0000000..4106014 --- /dev/null +++ b/CPP/hello.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main () +{ + cout << "Hello World!!"; + return 0 ; +} \ No newline at end of file