From 95e9748409c5dfb9c9f330df2f6f0d4a8df51d09 Mon Sep 17 00:00:00 2001 From: Nathanturcas Date: Tue, 18 Oct 2022 05:01:59 -0700 Subject: second commit. --- CST116-BlankConsole/CST116-BlankConsole.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'CST116-BlankConsole/CST116-BlankConsole.cpp') diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index 1eb1d31..5447640 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -4,12 +4,16 @@ // This is lab0. #include - +using std::cout; +using std::endl; int main() { - std::cout << "Hello World!\n"; + cout << "Hello World!" << endl; + + cout << "My name is Nathan Turcas, My github is nathanturcas. " << endl; } + // Run program: Ctrl + F5 or Debug > Start Without Debugging menu // Debug program: F5 or Debug > Start Debugging menu -- cgit v1.2.3