diff options
| author | Trenton Stark <[email protected]> | 2022-11-05 11:13:41 -0700 |
|---|---|---|
| committer | Trenton Stark <[email protected]> | 2022-11-05 11:13:41 -0700 |
| commit | e1c2357875be3ef245e31f9a02d1702bed10281a (patch) | |
| tree | ad54f0c0d9a15c66118780801988b7caf5652073 /BlankConsoleLab/cst116-lab2-stark.cpp | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab2-stark-e1c2357875be3ef245e31f9a02d1702bed10281a.tar.xz cst116-lab2-stark-e1c2357875be3ef245e31f9a02d1702bed10281a.zip | |
Renamed and added documentation.
Diffstat (limited to 'BlankConsoleLab/cst116-lab2-stark.cpp')
| -rw-r--r-- | BlankConsoleLab/cst116-lab2-stark.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/BlankConsoleLab/cst116-lab2-stark.cpp b/BlankConsoleLab/cst116-lab2-stark.cpp new file mode 100644 index 0000000..2e0131f --- /dev/null +++ b/BlankConsoleLab/cst116-lab2-stark.cpp @@ -0,0 +1,15 @@ +// Trenton Stark +// CST-116 +// Lab 2 + +#include <iostream> + +using std::cout; +using std::cin; +using std::endl; + +int main() +{ + cout << "Hello World!\n"; +} + |