diff options
| author | JordanHT-OIT <[email protected]> | 2021-10-04 20:40:05 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-10-04 20:40:05 -0700 |
| commit | 071ac4a3242476fededfa74e40c649c60d546d61 (patch) | |
| tree | a8482e645b66277ed99b2d38f488220d9ad10e16 /2c.cpp | |
| parent | Add online IDE url (diff) | |
| download | cst116-lab1-jordanht-oit-main.tar.xz cst116-lab1-jordanht-oit-main.zip | |
Diffstat (limited to '2c.cpp')
| -rw-r--r-- | 2c.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +//Lab work by Jordan Harris-Toovy for OIT's CST 116-01P course. Date: Oct 4, 2021
+//This code is made for part 2c of lab 1
+
+#include <iostream>
+
+int main() {
+ std::cout << "My name is Jordan Harris-Toovy\n"
+ << "I am approximately 24 years old";
+
+ return 0;
+}
\ No newline at end of file |