From e419abe61579ecebb6055a19cec1e35e0538df9a Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 26 Oct 2021 22:23:29 -0700 Subject: [PATCH] . --- tutorial/index.md | 5 +++++ 1 file changed, 5 insertions(+) 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