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

This commit is contained in:
zleyyij 2024-09-01 13:57:42 -06:00
parent 8d89323aed
commit edd0bf0e23

View File

@ -298,9 +298,9 @@ end: {
## Pseudocode ## Pseudocode
```c ```c
/************************************** /**************************************
* Function Title: BakeBananaCake * Function Title: RunStopLights
* *
* Summary: Bake a banana cake * Summary: Operate stoplights for a 4 way intersection
* *
* Inputs: none * Inputs: none
* Outputs: none * Outputs: none
@ -308,19 +308,15 @@ end: {
* Pseudocode * Pseudocode
* *
* Begin * Begin
* Add 3c flour * Set the north light to red
* Add 1 1/2 tps baking soda * Set the south light to red
* Add 1/2 tsp cinnamon * Set the east light to green
* Add 1/2 tsp salt * Set the west light to green
* Stir * Loop indefinitely
* Add 3 mashed bananas * Wait 30 seconds
* Add 1 tsp lemon juice * Toggle lights
* Stir * EndLoop
* Add 3 eggs
* Add 2tsp vanilla extract
* Stir a final time
* Bake @ 350F for 50 min
* Cool for 1 hour
* End * End
**************************************/ **************************************/
``` ```