diff options
| author | Hunter <[email protected]> | 2022-09-30 13:06:52 -0700 |
|---|---|---|
| committer | Hunter <[email protected]> | 2022-09-30 13:06:52 -0700 |
| commit | b28151d4033e29ae54b33414314d96c5601bce19 (patch) | |
| tree | 01389adcc179ef78338ac0545ee22e6b34fd526e | |
| parent | First 9 steps done. Not complete. (diff) | |
| download | cst116-lab0-huntbyrne-b28151d4033e29ae54b33414314d96c5601bce19.tar.xz cst116-lab0-huntbyrne-b28151d4033e29ae54b33414314d96c5601bce19.zip | |
Commit All. First 9 steps done.
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..0d48f39 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,16 @@ // CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
-//
+// Name: Hunter Byrne
+// Course: CST116
+// Lab Number: 0
+// Lab Topics: IDE, Simple Program, GitHub
#include <iostream>
-int main()
-{
- std::cout << "Hello World!\n";
+int main() {
+ using std::cout;
+ using std::endl;
+ cout << "Hello! My name is Hunter Byrne. My Github is @huntbyrne";
+
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|