update for rename of topics/closures.mdwn to topics/week7__95__environments__95__and_...
[lambda.git] / exercises / assignment3_answers.mdwn
index 0db7c26..082cb77 100644 (file)
     >     let pred = \n. n shift (pair 0 err) snd in
     >     ...
 
-    > Here is another solution, due to Martin Bunder and F. Urbanek:
+    > Here is another solution, that is attributed variously to Martin Bunder and F. Urbanek, or J. Velmans:
 
     >     let box = \a. \v. v a in
     >     let pred = \n. \s z. n (\b. box (b s)) (K z) I in