From 9b5bece031bd1e7f54c0a0ee7d3be5dee37917a9 Mon Sep 17 00:00:00 2001 From: mkart14 Date: Tue, 1 Oct 2019 02:23:18 +0530 Subject: [PATCH] Hello World in C++ --- hello_world_mkart14.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hello_world_mkart14.cpp diff --git a/hello_world_mkart14.cpp b/hello_world_mkart14.cpp new file mode 100644 index 0000000..05e0d2c --- /dev/null +++ b/hello_world_mkart14.cpp @@ -0,0 +1,11 @@ +/* LANGUAGE: c++ ENV: virtualenv AUTHOR: Kartikay Gupta GITHUB: https://github.com/mkart14 */ +#include + +using namespace std; + +int main() +{ + cout<<"Hello World!"; + + return 0; +} \ No newline at end of file