summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
authorgithub-classroom[bot] <66690702+github-classroom[bot]@users.noreply.github.com>2022-10-05 21:56:32 +0000
committergithub-classroom[bot] <66690702+github-classroom[bot]@users.noreply.github.com>2022-10-05 21:56:32 +0000
commit2fdeca0848d8a25e1060134abd92c8f1c0f2e85d (patch)
treefb7ffabe0f03dbab7a5190ad675caa699a872d24 /BlankConsoleLab/BlankConsoleLab.cpp
downloadcst116-lab1-johnson-2fdeca0848d8a25e1060134abd92c8f1c0f2e85d.tar.xz
cst116-lab1-johnson-2fdeca0848d8a25e1060134abd92c8f1c0f2e85d.zip
Initial commit
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
new file mode 100644
index 0000000..ed5f807
--- /dev/null
+++ b/BlankConsoleLab/BlankConsoleLab.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";
+}
+