aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanturcas <[email protected]>2022-10-18 05:01:59 -0700
committerNathanturcas <[email protected]>2022-10-18 05:01:59 -0700
commit95e9748409c5dfb9c9f330df2f6f0d4a8df51d09 (patch)
treecb3e02135a892048373e0a6e8ae3fe04e91dbda5
parentfirst commit. (diff)
downloadcst116-lab0-nathanturcas-main.tar.xz
cst116-lab0-nathanturcas-main.zip
second commit.HEADmain
-rw-r--r--CST116-BlankConsole/CST116-BlankConsole.cpp8
1 files changed, 6 insertions, 2 deletions
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 <iostream>
-
+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