From f02e5519050e6bdc2824f3a643b7cbc679d11b92 Mon Sep 17 00:00:00 2001 From: Kai Date: Wed, 5 Oct 2022 17:29:31 -0700 Subject: Last commit was a multitude of changes that I made to the project. --- CST116-BlankConsole/CST116-BlankConsole.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'CST116-BlankConsole/CST116-BlankConsole.cpp') diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..ad14995 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,18 @@ // CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there. +// +//Ernest Kai CST 116 Lab 0 Debugging // #include +using std::cout; +using std::endl; +using std::cin; int main() { - std::cout << "Hello World!\n"; + cout << "Hello World!"; + cout << "Hi my Github Name is Cobra Kai a play on my last name." << endl; + } // Run program: Ctrl + F5 or Debug > Start Without Debugging menu -- cgit v1.2.3