diff options
| author | Joseph Williams <[email protected]> | 2022-09-29 14:57:43 -0700 |
|---|---|---|
| committer | Joseph Williams <[email protected]> | 2022-09-29 14:57:43 -0700 |
| commit | 4b4eea4f8e00a5b54dacf2160d384140bc2438a3 (patch) | |
| tree | da155d454c17b7cd33ae90be5e12b1fbc33b64a9 /CST116-BlankConsole/CST116-BlankConsole.cpp | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab0-allthenamesaretaken3141-4b4eea4f8e00a5b54dacf2160d384140bc2438a3.tar.xz cst116-lab0-allthenamesaretaken3141-4b4eea4f8e00a5b54dacf2160d384140bc2438a3.zip | |
finished
Diffstat (limited to 'CST116-BlankConsole/CST116-BlankConsole.cpp')
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..b6d13f7 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,17 @@ -// CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
-//
+// Name: Joe Williams
+// Course: CST116
+// Lab No. 0
+// Lab Topics: IDE, Simple Programs, GitHub
#include <iostream>
+using std::cout;
+using std::endl;
+
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "I'm Joe. My GitHub is @AllTheNamesAreTaken3141, but there\'s nothing worth seeing there, I promise." << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|