From 9b64d9773e66de3bc515fb22c8c2bdb5f0abbe67 Mon Sep 17 00:00:00 2001 From: mickey4190 Date: Tue, 8 Oct 2019 11:36:24 +0530 Subject: [PATCH] hello world --- hello.cc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello.cc diff --git a/hello.cc b/hello.cc new file mode 100644 index 0000000..b9d7df5 --- /dev/null +++ b/hello.cc @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ + cout<<"Hello World"; + return 0; +}