From 818a231265a4dbb971ce42c757649641da3725cd Mon Sep 17 00:00:00 2001 From: templesteps <55879440+templesteps@users.noreply.github.com> Date: Thu, 17 Oct 2019 18:53:27 +0530 Subject: [PATCH] Create helloworld.cpp --- helloworld.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helloworld.cpp diff --git a/helloworld.cpp b/helloworld.cpp new file mode 100644 index 0000000..995f71c --- /dev/null +++ b/helloworld.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; +int main() +{ + cout << "Hello World"; +}