From: jim Date: Tue, 24 Feb 2015 13:57:45 +0000 (-0500) Subject: add comment X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=dd911c78a79577243800cafec55f75ef9d76d63a add comment --- diff --git a/exercises/assignment3_answers.mdwn b/exercises/assignment3_answers.mdwn index 781649ce..ae35731b 100644 --- a/exercises/assignment3_answers.mdwn +++ b/exercises/assignment3_answers.mdwn @@ -167,7 +167,7 @@ where `one` abbreviates `succ zero`, and `two` abbreviates `succ (succ zero)`. > let leq? = \l r. zero? (sub l r) in > ... - > Here is another solution. Jim crafted this particular implementation, but like a great deal of the CS knowledge he's gained over the past eight years, Oleg Kiselyov pointed the way. + > Here is another solution. Jim crafted this particular implementation, but like a great deal of the CS knowledge he's gained over the past eight years, Oleg Kiselyov pointed the way. > let leq? = (\base build consume. \l r. r consume (l build base) fst) > ; where base is