add toc
[lambda.git] / exercises / assignment7.mdwn
index ddee5f7..cb7c218 100644 (file)
@@ -1,8 +1,8 @@
-# Assignment 7
-
 There is no separate assignment 6. (There was a single big assignment for weeks 5 and 6, and
 we're going to keep the assignment numbers in synch with the weeks.)
 
+[[!toc]]
+
 ## Evaluation order in Combinatory Logic
 
 1. Give a term that the lazy evaluators (either [[the Haskell
@@ -208,7 +208,7 @@ So that's what's going on with those `Closure`s. In the simple code we gave you
 
 In any case, now you know what's going on with the `Closure`s, and you should be able to complete the missing pieces of the `eval` function in the code skeleton linked above.
 
-If you've completed all the (eight) missing parts correctly, then you should be able to compile the code skeleton, and use it as described in the comments at the start of the code.
+If you've completed all the missing parts correctly (there are six gaps for the previous stage of the homework, and two gaps for this stage), then you should be able to compile the code skeleton, and use it as described in the comments at the start of the code.
 
 
 ## Fuller interpreter