diff options
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index bf7aee4..4299da2 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,7 +1,11 @@ // CST116-Lab0 repository : This file contains the 'main' function. Program execution begins and ends there.
//
+// Morgan Cyrus, CST116-01P, Lab 0, Using an IDE and GitHub
+
#include <iostream>
+using std::cout;
+using std::cin;
int main()
{
|