diff options
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..c0e1134 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,18 @@ // CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
-//
+/*
+Name : Timothy Pearse
+Class : CST116_01P
+Lab # : 0
+Topics : IDE, Simple Program, GitHub
+*/
#include <iostream>
+using std::cout;
+using std::endl;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
|