aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--wk0/lab0.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/wk0/lab0.cpp b/wk0/lab0.cpp
new file mode 100644
index 0000000..df28c4d
--- /dev/null
+++ b/wk0/lab0.cpp
@@ -0,0 +1,12 @@
+// Lab 0
+// Matthew Strapp
+// 2019-01-23
+//
+// This program displays a message to the screen
+#include <iostream> using namespace std;
+
+int main()
+{
+cout << "Hello!" << endl; return 0;
+}
+