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 | |
| 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
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 14 | ||||
| -rw-r--r-- | CppProperties.json | 21 |
2 files changed, 26 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;
}
diff --git a/CppProperties.json b/CppProperties.json new file mode 100644 index 0000000..f598ba5 --- /dev/null +++ b/CppProperties.json @@ -0,0 +1,21 @@ +{ + "configurations": [ + { + "inheritEnvironments": [ + "msvc_x64" + ], + "name": "x64-Debug", + "includePath": [ + "${env.INCLUDE}", + "${workspaceRoot}\\**" + ], + "defines": [ + "WIN32", + "_DEBUG", + "UNICODE", + "_UNICODE" + ], + "intelliSenseMode": "windows-msvc-x64" + } + ] +}
\ No newline at end of file |