(no commit message)
[lambda.git] / assignment2.mdwn
index f6bde83..8295788 100644 (file)
@@ -76,6 +76,8 @@ For these exercises, assume that `LIST` is the result of evaluating:
 
                LIST make-list empty
 
+        [[Assignment 2 hint 1]]
+
 2.     Based on your answer to question 1, how might you implement the **map** function? Expected behavior:
 
        <pre><code>map f LIST <~~> (make-list (f a) (make-list (f b) (make-list (f c) (make-list (f d) (make-list (f e) empty)))))</code></pre>