Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

}