diff options
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 |