From bad10e0d462bb01f11d7f05a4f6eb71ae26b5cc7 Mon Sep 17 00:00:00 2001 From: ayush Date: Mon, 8 Oct 2018 01:41:45 +0530 Subject: [PATCH] hello.cpp --- code/hello.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/hello.cpp diff --git a/code/hello.cpp b/code/hello.cpp new file mode 100644 index 0000000..5de2205 --- /dev/null +++ b/code/hello.cpp @@ -0,0 +1,9 @@ +#include + +using namespace::std; + +int main() +{ + cout << "hello world"; + return 0; +}