diff options
| author | jacobdw22 <[email protected]> | 2022-09-29 16:02:11 -0700 |
|---|---|---|
| committer | jacobdw22 <[email protected]> | 2022-09-29 16:02:11 -0700 |
| commit | 71df3edb2a0e434dbfc32b6e1b24b340065a427c (patch) | |
| tree | 775ee733b689ecbc8a42d867944d5ea90cbd8d5b | |
| parent | simple changes (diff) | |
| download | cst116-lab0-jacobdw22-71df3edb2a0e434dbfc32b6e1b24b340065a427c.tar.xz cst116-lab0-jacobdw22-71df3edb2a0e434dbfc32b6e1b24b340065a427c.zip | |
simple changes final
| -rw-r--r-- | CST116-BlankConsole/CST116-Lab0-Wilson-pseudo-code.txt | 4 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-Lab0-Wilson.cpp | 2 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-Lab0-Wilson.txt | 4 | ||||
| -rw-r--r-- | CST116-BlankConsole/checklist.txt | 6 |
4 files changed, 13 insertions, 3 deletions
diff --git a/CST116-BlankConsole/CST116-Lab0-Wilson-pseudo-code.txt b/CST116-BlankConsole/CST116-Lab0-Wilson-pseudo-code.txt new file mode 100644 index 0000000..ba64077 --- /dev/null +++ b/CST116-BlankConsole/CST116-Lab0-Wilson-pseudo-code.txt @@ -0,0 +1,4 @@ +Start +Display "Hello World!" +Display "My name is Jacob Wilson, and my GitHub is jacobdw22." +End
\ No newline at end of file diff --git a/CST116-BlankConsole/CST116-Lab0-Wilson.cpp b/CST116-BlankConsole/CST116-Lab0-Wilson.cpp index b1c00a2..5b0ea85 100644 --- a/CST116-BlankConsole/CST116-Lab0-Wilson.cpp +++ b/CST116-BlankConsole/CST116-Lab0-Wilson.cpp @@ -7,7 +7,7 @@ using std::endl; int main() { cout << "Hello World!" << endl; - cout << "My name is Jacob Wilson, and my GitHub is jacobdw22" << endl; + cout << "My name is Jacob Wilson, and my GitHub is jacobdw22." << endl; } // Run program: Ctrl + F5 or Debug > Start Without Debugging menu diff --git a/CST116-BlankConsole/CST116-Lab0-Wilson.txt b/CST116-BlankConsole/CST116-Lab0-Wilson.txt index 0c22a66..9662c7f 100644 --- a/CST116-BlankConsole/CST116-Lab0-Wilson.txt +++ b/CST116-BlankConsole/CST116-Lab0-Wilson.txt @@ -1,2 +1,2 @@ -* Hello World! -* My name is Jacob Wilson, and my GitHub is jacobdw22
\ No newline at end of file +Hello World! +My name is Jacob Wilson, and my GitHub is jacobdw22.
\ No newline at end of file diff --git a/CST116-BlankConsole/checklist.txt b/CST116-BlankConsole/checklist.txt new file mode 100644 index 0000000..a40c1ea --- /dev/null +++ b/CST116-BlankConsole/checklist.txt @@ -0,0 +1,6 @@ +How to push an assignment: + +1. Save the files you've worked on. +2. "Commit All" in the Git Chnages tab on the right, after making a name like "simple changes". +Push (arrow with line underneath) to push to GitHub. +Check GitHub.
\ No newline at end of file |