diff options
| -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
|