diff options
author | Matthew Strapp <msattr@gmail.com> | 2019-01-22 19:48:18 +0000 |
---|---|---|
committer | Matthew Strapp <msattr@gmail.com> | 2019-01-22 19:48:18 +0000 |
commit | cfe0930bc91bec0ef62b1adb25e28173ea5626a0 (patch) | |
tree | fd7a06a7afa2c5be378711aa4f465efdc75c402f /wk0/wk0.cpp | |
parent | "The best way to fix errors is to delete everything" -someone, probably (diff) | |
download | homework-cfe0930bc91bec0ef62b1adb25e28173ea5626a0.tar homework-cfe0930bc91bec0ef62b1adb25e28173ea5626a0.tar.gz homework-cfe0930bc91bec0ef62b1adb25e28173ea5626a0.tar.bz2 homework-cfe0930bc91bec0ef62b1adb25e28173ea5626a0.tar.lz homework-cfe0930bc91bec0ef62b1adb25e28173ea5626a0.tar.xz homework-cfe0930bc91bec0ef62b1adb25e28173ea5626a0.tar.zst homework-cfe0930bc91bec0ef62b1adb25e28173ea5626a0.zip |
Fix?
Diffstat (limited to 'wk0/wk0.cpp')
-rw-r--r-- | wk0/wk0.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/wk0/wk0.cpp b/wk0/wk0.cpp new file mode 100644 index 0000000..f320bad --- /dev/null +++ b/wk0/wk0.cpp @@ -0,0 +1,11 @@ +// 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; +} |