diff options
| author | Evan <[email protected]> | 2022-11-28 19:04:38 -0800 |
|---|---|---|
| committer | Evan <[email protected]> | 2022-11-28 19:04:38 -0800 |
| commit | cef7f3b49f912f06e61458116ebaec00027e5db4 (patch) | |
| tree | 79e38aee07e48af0ec6993207cefc3d0eb3599b7 | |
| parent | asdf (diff) | |
| download | cst116-lab0-evanmihm-cef7f3b49f912f06e61458116ebaec00027e5db4.tar.xz cst116-lab0-evanmihm-cef7f3b49f912f06e61458116ebaec00027e5db4.zip | |
done
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 18 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj | 2 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters | 2 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-Lab0-Mihm.cpp | 11 |
4 files changed, 13 insertions, 20 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp deleted file mode 100644 index 0e28264..0000000 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#include <iostream>
-
-int main()
-{
- std::cout << "Hello World!\n";
-}
-
-// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
-// Debug program: F5 or Debug > Start Debugging menu
-
-
-// Tips for Getting Started:
-// 1. Use the Solution Explorer window to add/manage files
-// 2. Use the Team Explorer window to connect to source control
-// 3. Use the Output window to see build output and other messages
-// 4. Use the Error List window to view errors
-// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
-// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj b/CST116-BlankConsole/CST116-BlankConsole.vcxproj index a0056fb..1f2a93b 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj @@ -127,7 +127,7 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="CST116-BlankConsole.cpp" />
+ <ClCompile Include="CST116-Lab0-Mihm.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters index 08906aa..6a46595 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters @@ -15,7 +15,7 @@ </Filter>
</ItemGroup>
<ItemGroup>
- <ClCompile Include="CST116-BlankConsole.cpp">
+ <ClCompile Include="CST116-Lab0-Mihm.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
diff --git a/CST116-BlankConsole/CST116-Lab0-Mihm.cpp b/CST116-BlankConsole/CST116-Lab0-Mihm.cpp new file mode 100644 index 0000000..0dcbcd6 --- /dev/null +++ b/CST116-BlankConsole/CST116-Lab0-Mihm.cpp @@ -0,0 +1,11 @@ +// Evan Mihm, cst116, Lab0 +#include <iostream> + +using std::cout; +using std::endl; + +int main() +{ + cout << "Hello World!" << endl; + cout << "Evan Mihm, My GitHub is evanmihm" << endl; +}
\ No newline at end of file |