From 258f73ddfc983af66e35e60e51599079d3a143a1 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Tue, 22 Jan 2019 10:41:53 -0600 Subject: Add week 0 file --- wk0/lab0.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 wk0/lab0.cpp 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 using namespace std; + +int main() +{ +cout << "Hello!" << endl; return 0; +} + -- cgit v1.2.3