diff options
| author | Trenton Stark <[email protected]> | 2022-10-01 12:14:38 -0700 |
|---|---|---|
| committer | Trenton Stark <[email protected]> | 2022-10-01 12:14:38 -0700 |
| commit | 647d129fc5768c95b5eb8322d396087ccbcb0fdf (patch) | |
| tree | 1375cd73d6ebe0c890ea1eb8eea0f933c05101af | |
| parent | Added a text file with the scripts output (diff) | |
| download | cst116-lab0-starktre-647d129fc5768c95b5eb8322d396087ccbcb0fdf.tar.xz cst116-lab0-starktre-647d129fc5768c95b5eb8322d396087ccbcb0fdf.zip | |
Added a psuedo code text file
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj | 1 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters | 3 | ||||
| -rw-r--r-- | CST116-BlankConsole/cst116-lab0-starktre-psuedocode.txt | 8 |
3 files changed, 12 insertions, 0 deletions
diff --git a/CST116-BlankConsole/CST116-BlankConsole.vcxproj b/CST116-BlankConsole/CST116-BlankConsole.vcxproj index 469e819..4a259b6 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj @@ -131,6 +131,7 @@ </ItemGroup>
<ItemGroup>
<Text Include="cst116-lab0-starktre.txt" />
+ <Text Include="cst116-lab0-starktre-psuedocode.txt" />
</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 7b93c96..4db4120 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters +++ b/CST116-BlankConsole/CST116-BlankConsole.vcxproj.filters @@ -23,5 +23,8 @@ <Text Include="cst116-lab0-starktre.txt">
<Filter>Source Files</Filter>
</Text>
+ <Text Include="cst116-lab0-starktre-psuedocode.txt">
+ <Filter>Source Files</Filter>
+ </Text>
</ItemGroup>
</Project>
\ No newline at end of file diff --git a/CST116-BlankConsole/cst116-lab0-starktre-psuedocode.txt b/CST116-BlankConsole/cst116-lab0-starktre-psuedocode.txt new file mode 100644 index 0000000..7156e45 --- /dev/null +++ b/CST116-BlankConsole/cst116-lab0-starktre-psuedocode.txt @@ -0,0 +1,8 @@ +include the iostream library +use std::cout +use std::endl + +begin main +print "Hello World!" +print "I am Trenton Stark and my GitHub name is @Birducken." +end main
\ No newline at end of file |