diff options
Diffstat (limited to 'BlankConsoleLab/cst116-lab1-wilson.cpp')
| -rw-r--r-- | BlankConsoleLab/cst116-lab1-wilson.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/BlankConsoleLab/cst116-lab1-wilson.cpp b/BlankConsoleLab/cst116-lab1-wilson.cpp new file mode 100644 index 0000000..ed5f807 --- /dev/null +++ b/BlankConsoleLab/cst116-lab1-wilson.cpp @@ -0,0 +1,16 @@ +// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include <iostream> + +using namespace std; + +using std::cout; +using std::cin; +using std::endl; + +int main() +{ + cout << "Hello World!\n"; +} + |