From: jim Date: Mon, 23 Feb 2015 19:27:19 +0000 (-0500) Subject: typos X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=a4d2693effe839524592f4427465ff8d97625302 typos --- diff --git a/exercises/assignment3_answers.mdwn b/exercises/assignment3_answers.mdwn index ea0256da..781649ce 100644 --- a/exercises/assignment3_answers.mdwn +++ b/exercises/assignment3_answers.mdwn @@ -312,8 +312,8 @@ Reduce to beta-normal forms:
  1. (\x. x (\y. y x)) (v w) ~~> v w (\y. y (v w))
  2. (\x. x (\x. y x)) (v w) ~~> v w (\x. y x) -
  3. (\x. x (\y. y x)) (v x) ~~> v w (\y. y (v x)) -
  4. (\x. x (\y. y x)) (v y) ~~> v w (\u. u (v y)) +
  5. (\x. x (\y. y x)) (v x) ~~> v x (\y. y (v x)) +
  6. (\x. x (\y. y x)) (v y) ~~> v y (\u. u (v y))
  7. (\x y. x y y) u v ~~> u v v
  8. (\x y. y x) (u v) z w ~~> z (u v) w