This commit is contained in:
Kartik K. Agaram 2021-10-26 22:23:29 -07:00
parent c3eab11fd1
commit e419abe615
1 changed files with 5 additions and 0 deletions

View File

@ -217,6 +217,11 @@ If you're stuck, as always, [my door is open](http://akkartik.name/contact).
You can also see a solution in the repository, though I won't link to it lest You can also see a solution in the repository, though I won't link to it lest
it encourage peeking. it encourage peeking.
Where possible, try to store variables in registers rather than the stack. The
two main reasons to use the stack are:
* when you need lots of variables and run out of registers, and
* when you have types that don't fit in 32 bits.
## Task 6: getting used to a few error messages ## Task 6: getting used to a few error messages
If you're like me, seeing an error message can feel a bit stressful. It If you're like me, seeing an error message can feel a bit stressful. It