From fd4df6cebe4b500f992f15e2c5167a24f674160a Mon Sep 17 00:00:00 2001 From: jacobdw22 Date: Thu, 29 Sep 2022 15:03:37 -0700 Subject: simple changes --- CST116-BlankConsole/CST116-BlankConsole.cpp | 6 ++++-- 1 file 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 - +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 -- cgit v1.2.3