vault backup: 2024-09-01 13:07:42

This commit is contained in:
zleyyij 2024-09-01 13:07:42 -06:00
parent 33e398a165
commit a736e0809a

View File

@ -137,6 +137,7 @@ if -> shady: {
label: if shady path label: if shady path
} }
shady { shady {
grid-columns: 2
1.class: turn-270 1.class: turn-270
1 -> 2 1 -> 2
2.label: walk 112 steps 2.label: walk 112 steps
@ -161,6 +162,7 @@ end: {shape: oval}
if -> end if -> end
if -> sunny: if sunny path if -> sunny: if sunny path
sunny { sunny {
grid-columns: 2
1.class: turn-270 1.class: turn-270
1 -> 2 1 -> 2
2.label: walk 73 steps 2.label: walk 73 steps
@ -168,7 +170,7 @@ sunny {
3.class: turn-0 3.class: turn-0
3 -> 4 3 -> 4
4.label: walk 94 steps 4.label: walk 94 steps
4 -> 5: 4 -> 5
5.label: turn to 275 degrees 5.label: turn to 275 degrees
5 -> 6 5 -> 6
6.label: walk 361 steps 6.label: walk 361 steps
@ -178,5 +180,37 @@ sunny {
8.label: walk 176 steps 8.label: walk 176 steps
8 -> 9 8 -> 9
9.label: turn to 270 degrees 9.label: turn to 270 degrees
9 -> 10
10.label: walk 80 steps
} }
```
## Pseudocode
```c
/**************************************
* Function Title: WalkToTscFromEngr
*
* Summary: Walk from the west entrance of the engineering building
* to the southeast entrace of the taggart std
* Inputs: none
* Outputs: none
**************************************
* Pseudocode
*
* Begin
* Add 3c flour
* Add 1 1/2 tps baking soda
* Add 1/2 tsp cinnamon
* Add 1/2 tsp salt
* Stir
* Add 3 mashed bananas
* Add 1 tsp lemon juice
* Stir
* Add 3 eggs
* Add 2tsp vanilla extract
* Stir a final time
* Bake @ 350F for 50 min
* Cool for 1 hour
* End
**************************************/
``` ```