From 8ae4bdd1aae29d91e06bf7c4cc8388fadfe04618 Mon Sep 17 00:00:00 2001 From: arjunr50 <43809027+arjunr50@users.noreply.github.com> Date: Tue, 20 Oct 2020 01:51:57 +0530 Subject: [PATCH] Create hello.cpp Added hello world program in c++ --- hello.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.cpp diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..7867d62 --- /dev/null +++ b/hello.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World!"; + return 0; +}