From 9af7e1b6d5a6064e3a8458ab6aba568a43dae413 Mon Sep 17 00:00:00 2001 From: azizur13 <73368231+azizur13@users.noreply.github.com> Date: Fri, 23 Oct 2020 19:37:17 -0400 Subject: [PATCH] Create HelloWorldC++.cpp --- HelloWorldC++.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 HelloWorldC++.cpp 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; +}