diff options
-rw-r--r-- | tutorial/index.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tutorial/index.md b/tutorial/index.md index 0ea92a3f..bd27300f 100644 --- a/tutorial/index.md +++ b/tutorial/index.md @@ -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 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 If you're like me, seeing an error message can feel a bit stressful. It |