Merge branch 'pryor'
[lambda.git] / assignment3.mdwn
index df06d52..289f818 100644 (file)
@@ -30,7 +30,7 @@ Recall that version 1 style lists are constructed like this (see
        let iszero = \n. n (\x. false) true in
        let succ = \n s z. s (n s z) in
        let mul = \m n s. m (n s) in
-       let pred = \n. iszero n 0 (length (tail (n (\p. make_list junk p) empty))) in
+       let pred = (\shift n. n shift (make\_pair 0 0) get\_snd) (\p. p (\x y. make\_pair (succ x) x)) in
        let leq = \m n. iszero(n pred m) in
        let eq = \m n. and (leq m n)(leq n m) in
        
@@ -107,7 +107,7 @@ be your base case for your recursive functions that operate on these
 trees.
 
 <OL start=6>
-<LI>Write a function that sums the number of leaves in a tree.
+<LI>Write a function that sums the values at the leaves in a tree.
 
 Expected behavior: