From c28801670315358d5c447bcfd0fb6469d1f84172 Mon Sep 17 00:00:00 2001 From: Jonathan Eugenio Date: Wed, 14 Oct 2015 22:04:01 -0400 Subject: [PATCH] Added hello.cpp to the repository --- hello.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello.cpp diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..a1b632b --- /dev/null +++ b/hello.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main(){ + cout<<"Hello World!"; + return 0; +} +