diff options
| author | Tim Pearse <[email protected]> | 2022-10-01 12:19:14 -0700 |
|---|---|---|
| committer | Tim Pearse <[email protected]> | 2022-10-01 12:19:14 -0700 |
| commit | 85db1c9b742f443096bcfc59018e51a9f927efab (patch) | |
| tree | c7f0b1dc972fc1e53e735977cc5756f8d8d2b7d1 | |
| parent | Change 2: Attempting to force GitHub to work. (diff) | |
| download | cst116-lab0-legokid1503-85db1c9b742f443096bcfc59018e51a9f927efab.tar.xz cst116-lab0-legokid1503-85db1c9b742f443096bcfc59018e51a9f927efab.zip | |
Change 3: Commiting because it's cool and the steps want me to do it here
Next Step :
Copy the output from the run of your program to a text file in your project. Give the text file the same name as your project (except for the extension).
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index c0e1134..7180466 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -12,7 +12,7 @@ using std::endl; int main()
{
- cout << "Hello World!" << endl;
+ cout << "My name is Timothy Pearse. My username on GitHub is legokid1503." << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|