aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacobdw22 <[email protected]>2022-09-29 15:03:37 -0700
committerjacobdw22 <[email protected]>2022-09-29 15:03:37 -0700
commitfd4df6cebe4b500f992f15e2c5167a24f674160a (patch)
tree464ba75db5be85a438d9de5b1ad441db4a788622
parentSimple changes (diff)
downloadcst116-lab0-jacobdw22-fd4df6cebe4b500f992f15e2c5167a24f674160a.tar.xz
cst116-lab0-jacobdw22-fd4df6cebe4b500f992f15e2c5167a24f674160a.zip
simple changes
-rw-r--r--CST116-BlankConsole/CST116-BlankConsole.cpp6
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