diff --git a/main.cpp b/main.cpp index cc6dc39..ed970b1 100644 --- a/main.cpp +++ b/main.cpp @@ -3,8 +3,9 @@ using namespace std; int main(){ - string name = "Gurpreet"; - cout << name << " is in CSCI 430" << endl; + string name = "Gurpreet"; // my name + cout << name << " is in CSCI 430" << endl; // print out to screen + cout << "Editing this file for quiz prep with Git fork and pull" << endl; return 0; }