diff options
| author | Nathanturcas <[email protected]> | 2022-10-18 05:01:59 -0700 |
|---|---|---|
| committer | Nathanturcas <[email protected]> | 2022-10-18 05:01:59 -0700 |
| commit | 95e9748409c5dfb9c9f330df2f6f0d4a8df51d09 (patch) | |
| tree | cb3e02135a892048373e0a6e8ae3fe04e91dbda5 | |
| parent | first commit. (diff) | |
| download | cst116-lab0-nathanturcas-main.tar.xz cst116-lab0-nathanturcas-main.zip | |
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 8 |
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
|