aboutsummaryrefslogtreecommitdiff
path: root/CST116Lab0Preston/CST116Lab0Preston.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CST116Lab0Preston/CST116Lab0Preston.cpp')
-rw-r--r--CST116Lab0Preston/CST116Lab0Preston.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/CST116Lab0Preston/CST116Lab0Preston.cpp b/CST116Lab0Preston/CST116Lab0Preston.cpp
new file mode 100644
index 0000000..1a94705
--- /dev/null
+++ b/CST116Lab0Preston/CST116Lab0Preston.cpp
@@ -0,0 +1,21 @@
+// CST116Lab0Preston.cpp : This file contains the 'main' function. Program execution begins and ends there.
+
+//Derek Preston
+//CST116 C++ Programming 1
+//Lab0
+//Learn IDE and GitHub
+
+#include <iostream>
+
+using std::cout;
+using std::endl;
+
+int main()
+{
+ cout << "Hello World!" << endl;
+ cout << "My name is Derek!" << endl;
+ cout << "My GitHub is @prestonderek" << endl;
+}
+
+//Finished. Commit on 9/29/2022 at 8:30am
+