diff options
| author | Joe Traver <[email protected]> | 2022-10-18 17:08:00 -0700 |
|---|---|---|
| committer | Joe Traver <[email protected]> | 2022-10-18 17:08:00 -0700 |
| commit | 88ac10f20414306312b745ea69b7d9746f4cbdca (patch) | |
| tree | 480fb46f716214f16c91f705dc0f42eaf96b5806 /CST116-BlankConsole/CST116-BlankConsole.cpp | |
| parent | removed std before cout and replaced /n with endl (diff) | |
| download | archived-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.cpp | 14 |
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;
}
|