aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHunter <[email protected]>2022-09-30 13:06:52 -0700
committerHunter <[email protected]>2022-09-30 13:06:52 -0700
commitb28151d4033e29ae54b33414314d96c5601bce19 (patch)
tree01389adcc179ef78338ac0545ee22e6b34fd526e
parentFirst 9 steps done. Not complete. (diff)
downloadcst116-lab0-huntbyrne-b28151d4033e29ae54b33414314d96c5601bce19.tar.xz
cst116-lab0-huntbyrne-b28151d4033e29ae54b33414314d96c5601bce19.zip
Commit All. First 9 steps done.
-rw-r--r--CST116-BlankConsole/CST116-BlankConsole.cpp13
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