aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Pearse <[email protected]>2022-10-01 12:14:49 -0700
committerTim Pearse <[email protected]>2022-10-01 12:14:49 -0700
commit0f997851d3ec0507378cfbd77c3d656ddda7b7d9 (patch)
tree9d6308b4ef0385288b6a783dcbc61718f2456324
parentChange 1, added comment details and using lines (diff)
downloadcst116-lab0-legokid1503-0f997851d3ec0507378cfbd77c3d656ddda7b7d9.tar.xz
cst116-lab0-legokid1503-0f997851d3ec0507378cfbd77c3d656ddda7b7d9.zip
Change 2: Attempting to force GitHub to work.
Next Step : Add a cout statement that lets the world know who you are and what your GitHub is. Be sure to include your GitHub name and an endl (no /n).
-rw-r--r--CST116-BlankConsole/CST116-BlankConsole.cpp11
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