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 | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab0-johnson-8f060a1679a209d4d01a60be554116537e2a8e62.tar.xz cst116-lab0-johnson-8f060a1679a209d4d01a60be554116537e2a8e62.zip | |
finished
| -rw-r--r-- | .gitignore | 6 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 11 |
2 files changed, 16 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc85e46 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +/CST116-BlankConsole/.vs/CST116-BlankConsole +/.vs/cst116-lab0-wyattjohnson/v17 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
|