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; +}