diff options
| author | Joseph Williams <[email protected]> | 2022-09-29 14:57:43 -0700 |
|---|---|---|
| committer | Joseph Williams <[email protected]> | 2022-09-29 14:57:43 -0700 |
| commit | 4b4eea4f8e00a5b54dacf2160d384140bc2438a3 (patch) | |
| tree | da155d454c17b7cd33ae90be5e12b1fbc33b64a9 | |
| parent | Setting up GitHub Classroom Feedback (diff) | |
| download | cst116-lab0-allthenamesaretaken3141-4b4eea4f8e00a5b54dacf2160d384140bc2438a3.tar.xz cst116-lab0-allthenamesaretaken3141-4b4eea4f8e00a5b54dacf2160d384140bc2438a3.zip | |
finished
28 files changed, 38 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..10b074b --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.opendb diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..1105f80 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,7 @@ +{ + "ExpandedNodes": [ + "" + ], + "SelectedNode": "\\CST116-BlankConsole.sln", + "PreviewInSolutionExplorer": false +}
\ No newline at end of file diff --git a/.vs/cst116-lab0-AllTheNamesAreTaken3141/v17/.suo b/.vs/cst116-lab0-AllTheNamesAreTaken3141/v17/.suo Binary files differnew file mode 100644 index 0000000..732ad38 --- /dev/null +++ b/.vs/cst116-lab0-AllTheNamesAreTaken3141/v17/.suo diff --git a/CST116-BlankConsole/.vs/CST116-BlankConsole/FileContentIndex/5cac7120-e018-4863-82c0-a822ea5e7928.vsidx b/CST116-BlankConsole/.vs/CST116-BlankConsole/FileContentIndex/5cac7120-e018-4863-82c0-a822ea5e7928.vsidx Binary files differnew file mode 100644 index 0000000..48fc7e3 --- /dev/null +++ b/CST116-BlankConsole/.vs/CST116-BlankConsole/FileContentIndex/5cac7120-e018-4863-82c0-a822ea5e7928.vsidx diff --git a/CST116-BlankConsole/.vs/CST116-BlankConsole/FileContentIndex/read.lock b/CST116-BlankConsole/.vs/CST116-BlankConsole/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/CST116-BlankConsole/.vs/CST116-BlankConsole/FileContentIndex/read.lock diff --git a/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/.suo b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/.suo Binary files differnew file mode 100644 index 0000000..3ef11fd --- /dev/null +++ b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/.suo diff --git a/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db Binary files differnew file mode 100644 index 0000000..00d9ff3 --- /dev/null +++ b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db diff --git a/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db-shm b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db-shm Binary files differnew file mode 100644 index 0000000..d5cd7f2 --- /dev/null +++ b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db-shm diff --git a/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db-wal b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db-wal Binary files differnew file mode 100644 index 0000000..b7114ba --- /dev/null +++ b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/Browse.VC.db-wal diff --git a/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/ipch/AutoPCH/49162e58a124e3d3/CST116-BLANKCONSOLE.ipch b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/ipch/AutoPCH/49162e58a124e3d3/CST116-BLANKCONSOLE.ipch Binary files differnew file mode 100644 index 0000000..f7012ec --- /dev/null +++ b/CST116-BlankConsole/.vs/CST116-BlankConsole/v17/ipch/AutoPCH/49162e58a124e3d3/CST116-BLANKCONSOLE.ipch diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..b6d13f7 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,17 @@ -// CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
-//
+// Name: Joe Williams
+// Course: CST116
+// Lab No. 0
+// Lab Topics: IDE, Simple Programs, GitHub
#include <iostream>
+using std::cout;
+using std::endl;
+
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "I'm Joe. My GitHub is @AllTheNamesAreTaken3141, but there\'s nothing worth seeing there, I promise." << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj b/CST116-BlankConsole/CST116-BlankConsole.vcxproj index a0056fb..674ee3a 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj @@ -24,6 +24,7 @@ <ProjectGuid>{369d37de-a099-4925-8283-6b7bf55736f9}</ProjectGuid>
<RootNamespace>CST116BlankConsole</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ <ProjectName>CST116-Lab0-Williams</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.log b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.log new file mode 100644 index 0000000..af1da54 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.log @@ -0,0 +1,2 @@ + CST116-BlankConsole.cpp + CST116-BlankConsole.vcxproj -> C:\Users\hey-t\source\repos\cst116-lab0-AllTheNamesAreTaken3141\CST116-BlankConsole\x64\Debug\CST116-Lab0-Williams.exe diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.obj b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.obj Binary files differnew file mode 100644 index 0000000..5ef9c04 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.obj diff --git a/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.vcxproj.FileListAbsolute.txt b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.vcxproj.FileListAbsolute.txt new file mode 100644 index 0000000..2e6738b --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-BlankConsole.vcxproj.FileListAbsolute.txt @@ -0,0 +1 @@ +C:\Users\hey-t\source\repos\cst116-lab0-AllTheNamesAreTaken3141\CST116-BlankConsole\x64\Debug\CST116-Lab0-Williams.exe diff --git a/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.command.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..af2181b --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.command.1.tlog diff --git a/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.read.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..e747640 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.read.1.tlog diff --git a/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.write.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..cc3f417 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CL.write.1.tlog diff --git a/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CST116-Lab0-Williams.lastbuildstate b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CST116-Lab0-Williams.lastbuildstate new file mode 100644 index 0000000..4f2b185 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/CST116-Lab0-Williams.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0: +Debug|x64|C:\Users\hey-t\source\repos\cst116-lab0-AllTheNamesAreTaken3141\CST116-BlankConsole\| diff --git a/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.command.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..b5321fe --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.command.1.tlog diff --git a/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.read.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..fb1a63d --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.read.1.tlog diff --git a/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.write.1.tlog b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..440d998 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-L.369d37de.tlog/link.write.1.tlog diff --git a/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.exe b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.exe Binary files differnew file mode 100644 index 0000000..654684b --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.exe diff --git a/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.exe.recipe b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.exe.recipe new file mode 100644 index 0000000..05317c1 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project> + <ProjectOutputs> + <ProjectOutput> + <FullPath>C:\Users\hey-t\source\repos\cst116-lab0-AllTheNamesAreTaken3141\CST116-BlankConsole\x64\Debug\CST116-Lab0-Williams.exe</FullPath> + </ProjectOutput> + </ProjectOutputs> + <ContentFiles /> + <SatelliteDlls /> + <NonRecipeFileRefs /> +</Project>
\ No newline at end of file diff --git a/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.ilk b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.ilk Binary files differnew file mode 100644 index 0000000..5cab33c --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.ilk diff --git a/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.pdb b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.pdb Binary files differnew file mode 100644 index 0000000..a7478c8 --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/CST116-Lab0-Williams.pdb diff --git a/CST116-BlankConsole/x64/Debug/vc143.idb b/CST116-BlankConsole/x64/Debug/vc143.idb Binary files differnew file mode 100644 index 0000000..813f03f --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/vc143.idb diff --git a/CST116-BlankConsole/x64/Debug/vc143.pdb b/CST116-BlankConsole/x64/Debug/vc143.pdb Binary files differnew file mode 100644 index 0000000..4996fcd --- /dev/null +++ b/CST116-BlankConsole/x64/Debug/vc143.pdb |