From 8f060a1679a209d4d01a60be554116537e2a8e62 Mon Sep 17 00:00:00 2001 From: Wyatt Date: Thu, 29 Sep 2022 15:04:42 -0700 Subject: finished --- .gitignore | 6 ++++++ CST116-BlankConsole/CST116-BlankConsole.cpp | 11 ++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .gitignore 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 +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 -- cgit v1.2.3