aboutsummaryrefslogtreecommitdiff
path: root/CST116Lab0Preston/CST116Lab0Preston.cpp
diff options
context:
space:
mode:
authorDerek Preston <[email protected]>2022-10-01 11:51:10 -0700
committerDerek Preston <[email protected]>2022-10-01 11:51:10 -0700
commitceb1b1967546bb200d531239de01b09092ec255f (patch)
treeebb45762db6a8e149ac7efafe0569825aa3eb8cd /CST116Lab0Preston/CST116Lab0Preston.cpp
parentCommit on 9/29/22 at 8:30am (diff)
downloadcst116-lab0-prestonderek-ceb1b1967546bb200d531239de01b09092ec255f.tar.xz
cst116-lab0-prestonderek-ceb1b1967546bb200d531239de01b09092ec255f.zip
Commit on 10/1/22
Changed File Names
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
+