diff options
| author | jacobdw22 <[email protected]> | 2022-09-29 15:03:37 -0700 |
|---|---|---|
| committer | jacobdw22 <[email protected]> | 2022-09-29 15:03:37 -0700 |
| commit | fd4df6cebe4b500f992f15e2c5167a24f674160a (patch) | |
| tree | 464ba75db5be85a438d9de5b1ad441db4a788622 | |
| parent | Simple changes (diff) | |
| download | cst116-lab0-jacobdw22-fd4df6cebe4b500f992f15e2c5167a24f674160a.tar.xz cst116-lab0-jacobdw22-fd4df6cebe4b500f992f15e2c5167a24f674160a.zip | |
simple changes
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..2193c61 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -2,10 +2,12 @@ //
#include <iostream>
-
+using std::cout;
+using std::endl;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "My name is Jacob Wilson, and my GitHub is jacobdw22" << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|