diff options
author | Matthew Strapp <msattr@gmail.com> | 2019-01-22 20:42:52 +0000 |
---|---|---|
committer | Matthew Strapp <msattr@gmail.com> | 2019-01-22 20:42:52 +0000 |
commit | c531bc2cc39ae868a34d6230e83ce978f5d05a47 (patch) | |
tree | 1887a8ac2c92598909cb81839150eab227cec291 /ee1301/wk0 | |
parent | Change things (diff) | |
download | homework-c531bc2cc39ae868a34d6230e83ce978f5d05a47.tar homework-c531bc2cc39ae868a34d6230e83ce978f5d05a47.tar.gz homework-c531bc2cc39ae868a34d6230e83ce978f5d05a47.tar.bz2 homework-c531bc2cc39ae868a34d6230e83ce978f5d05a47.tar.lz homework-c531bc2cc39ae868a34d6230e83ce978f5d05a47.tar.xz homework-c531bc2cc39ae868a34d6230e83ce978f5d05a47.tar.zst homework-c531bc2cc39ae868a34d6230e83ce978f5d05a47.zip |
Why tho
Diffstat (limited to 'ee1301/wk0')
-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; +} |