diff options
| author | Wyatt <[email protected]> | 2022-09-29 15:04:42 -0700 |
|---|---|---|
| committer | Wyatt <[email protected]> | 2022-09-29 15:04:42 -0700 |
| commit | 8f060a1679a209d4d01a60be554116537e2a8e62 (patch) | |
| tree | 46a618dab05d6cd40c320ce8774a7b6d361d2701 /CST116-BlankConsole | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab0-johnson-8f060a1679a209d4d01a60be554116537e2a8e62.tar.xz cst116-lab0-johnson-8f060a1679a209d4d01a60be554116537e2a8e62.zip | |
finished
Diffstat (limited to 'CST116-BlankConsole')
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..d318b9a 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,20 @@ // CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
+/*
+ Wyatt Johnson
+ CST116
+ Lab 0
+ IDE, Simple Program, GitHub
+*/
#include <iostream>
+using std::cout;
+using std::endl;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "Wyatt Johnson, hyper2snyper" << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|