From 2cfa10fa227b81ee7d1924e4577c8e80599b23e8 Mon Sep 17 00:00:00 2001 From: Vishal Pattnaik Date: Mon, 29 Oct 2018 12:34:24 +0530 Subject: [PATCH] Create helloWorld.cpp --- helloWorld.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 helloWorld.cpp 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; +}