From 536f9ac8052a21909d709f187c4b81e4409f5b56 Mon Sep 17 00:00:00 2001 From: patronus12 <72188346+patronus12@users.noreply.github.com> Date: Thu, 1 Oct 2020 12:37:56 +0530 Subject: [PATCH] Create new.cpp --- new.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 new.cpp diff --git a/new.cpp b/new.cpp new file mode 100644 index 0000000..6bdeaa5 --- /dev/null +++ b/new.cpp @@ -0,0 +1,7 @@ +//how to print hello world in C++ +#include +using namespace std; +int main() +{ + cout<<"hello world!\n"; +}