From 455ffc7300475a97a58c9dde25914ceeb07e466b Mon Sep 17 00:00:00 2001 From: vimuDeshan Date: Sun, 7 Oct 2018 09:47:26 +0530 Subject: [PATCH] hello world in cpp --- HelloWorld.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 HelloWorld.cpp diff --git a/HelloWorld.cpp b/HelloWorld.cpp new file mode 100644 index 0000000..ed642a6 --- /dev/null +++ b/HelloWorld.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ + cout <<"\nHello World"<< endl; + return 0; +}