From c99699ee06d961b989c29dc3a680e758a666d8be Mon Sep 17 00:00:00 2001 From: manan012 <33518498+manan012@users.noreply.github.com> Date: Thu, 4 Oct 2018 19:25:44 +0530 Subject: [PATCH] Create hello_world_manan012.cpp --- scripts/hello_world_manan012.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 scripts/hello_world_manan012.cpp diff --git a/scripts/hello_world_manan012.cpp b/scripts/hello_world_manan012.cpp new file mode 100644 index 0000000000..cfcbb25e49 --- /dev/null +++ b/scripts/hello_world_manan012.cpp @@ -0,0 +1,11 @@ +// LANGUAGE: C++ + +// AUTHOR: Manan Goel +// GITHUB: https://github.com/manan012 +#include +using namespace std; +int main() +{ + cout<<"Hello, World!"; + return 0; +}