aboutsummaryrefslogtreecommitdiff
path: root/CST116-BlankConsole/CST116-BlankConsole.cpp
diff options
context:
space:
mode:
authorJoe Traver <[email protected]>2022-10-18 17:08:00 -0700
committerJoe Traver <[email protected]>2022-10-18 17:08:00 -0700
commit88ac10f20414306312b745ea69b7d9746f4cbdca (patch)
tree480fb46f716214f16c91f705dc0f42eaf96b5806 /CST116-BlankConsole/CST116-BlankConsole.cpp
parentremoved std before cout and replaced /n with endl (diff)
downloadarchived-cst116-lab0-joetraver30-88ac10f20414306312b745ea69b7d9746f4cbdca.tar.xz
archived-cst116-lab0-joetraver30-88ac10f20414306312b745ea69b7d9746f4cbdca.zip
Debug Fix with Martha
Diffstat (limited to 'CST116-BlankConsole/CST116-BlankConsole.cpp')
-rw-r--r--CST116-BlankConsole/CST116-BlankConsole.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp
index b13a366..647b893 100644
--- a/CST116-BlankConsole/CST116-BlankConsole.cpp
+++ b/CST116-BlankConsole/CST116-BlankConsole.cpp
@@ -8,19 +8,15 @@
#include <iostream>
-using std::cout
-using std::endl
+using std::cout;
+using std::endl;
int main()
{
- cout << "Hello World!" endl;
-
- cout << "Joe Traver" endl;
- cout << "GitHud ID - joetraver30" endl:
-
-
-
+ cout << "Hello World!" << endl;
+ cout << "Joe Traver" << endl;
+ cout << "GitHud ID - joetraver30" << endl;
}