(no commit message)
authorbarker <barker@web>
Mon, 20 Sep 2010 03:40:12 +0000 (23:40 -0400)
committerLambda Wiki <lambda@SERVER.PHILOSOPHY.FAS.NYU.EDU>
Mon, 20 Sep 2010 03:40:12 +0000 (23:40 -0400)
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
 
 
                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>
 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>