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