about summary refs log tree commit diff stats
path: root/tutorial
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-26 22:23:29 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-26 22:23:29 -0700
commite419abe61579ecebb6055a19cec1e35e0538df9a (patch)
treed3f6637a907a2b20c806315430150a4dce448085 /tutorial
parentc3eab11fd159bed340fcd4db0be22cf7d2cba994 (diff)
downloadmu-e419abe61579ecebb6055a19cec1e35e0538df9a.tar.gz
.
Diffstat (limited to 'tutorial')
-rw-r--r--tutorial/index.md5
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