diff options
| author | Lloyd Crawford <Lloyd Crawford@LAPTOP-7HJCDLE5> | 2022-10-02 18:31:46 -0700 |
|---|---|---|
| committer | Lloyd Crawford <Lloyd Crawford@LAPTOP-7HJCDLE5> | 2022-10-02 18:31:46 -0700 |
| commit | e3474ee2e64ec4bf26551640ed9928ddc070394c (patch) | |
| tree | 87f4c0f8d121a44e0ee9391589f7d90a3043ff05 /CST116-BlankConsole/CST116-BlankConsole.cpp | |
| parent | CST 116-Lab0-Crawford (diff) | |
| download | cst116-lab0-19-ruin-main.tar.xz cst116-lab0-19-ruin-main.zip | |
Diffstat (limited to 'CST116-BlankConsole/CST116-BlankConsole.cpp')
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..915f1be 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.
-//
+// Lloyd Crawford, CST 116 02, Lab0, IDE, Simple Program, Github
+
#include <iostream>
+#include "CST116-BlankConsole.h"
+using std::cout;
+using std::endl;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "Hello I am Lloyd Crawford!" << endl;
+ cout << "My Github is 19-Ruin" << endl;
+
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|