From 28f66878bf19e4a94afd3bd490abc9e7597ea7c0 Mon Sep 17 00:00:00 2001 From: devashishpurohit <42600084+devashishpurohit@users.noreply.github.com> Date: Thu, 31 Oct 2019 18:27:36 +0530 Subject: [PATCH] Updated --- Aubree_Lytwyn.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Aubree_Lytwyn.cpp b/Aubree_Lytwyn.cpp index 0aa9fc6..42927ad 100644 --- a/Aubree_Lytwyn.cpp +++ b/Aubree_Lytwyn.cpp @@ -1 +1,17 @@ //Recitation 10 Practice git +// Simple C++ program to display "Hello World" + +// Header file for input output functions +#include + +using namespace std; + +// main function - +// where the execution of program begins +int main() +{ + // prints hello world + cout<<"Hello World"; + + return 0; +}