about summary refs log tree commit diff stats
path: root/tutorial/index.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-26 23:15:25 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-26 23:16:03 -0700
commit0ccfd0156f8129df0959b51593bf2a9116e03a37 (patch)
tree05aa398ace17ae923aaa81fa2e8cd4a6298ccf00 /tutorial/index.md
parentc7dde8d8b4338d478fc61c4a8ea5e1c84bf5513e (diff)
downloadmu-0ccfd0156f8129df0959b51593bf2a9116e03a37.tar.gz
make room for a second task before fractional numbers
Diffstat (limited to 'tutorial/index.md')
-rw-r--r--tutorial/index.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/tutorial/index.md b/tutorial/index.md
index 72917533..0967b059 100644
--- a/tutorial/index.md
+++ b/tutorial/index.md
@@ -354,7 +354,7 @@ the precise register a function header specifies. The return value can even be
 a literal integer or in memory somewhere. The `return` is really just a `copy`
 to the appropriate register(s). This is why the second example above is legal.
 
-## Task 9: operating with fractional numbers
+## Task 10: operating with fractional numbers
 
 All our variables so far have had type `int` (integer), but there are limits
 to what you can do with just whole integers. For example, here's the formula
@@ -375,7 +375,7 @@ Write a function to perform this conversion. Some starting points:
 
 This task has four source files in the repo that reveal more and more of the
 answer. Start from the first, and bump down if you need a hint.
-* tutorial/task8.mu
-* tutorial/task8-hint1.mu
-* tutorial/task8-hint2.mu
-* tutorial/task8-hint3.mu
+* tutorial/task10.mu
+* tutorial/task10-hint1.mu
+* tutorial/task10-hint2.mu
+* tutorial/task10-hint3.mu