From ad83804291adf8f2d9cdc7fa8117ee84d85da836 Mon Sep 17 00:00:00 2001 From: GURPREET JAGPAL Date: Sun, 19 Feb 2023 21:36:54 -0800 Subject: [PATCH] Made changes for quiz practice --- main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }