]> git.rkrishnan.org Git - sicp.git/blob - src/sicp/ex4_18.rkt
Solution to 4.30. Extremely enlightening!
[sicp.git] / src / sicp / ex4_18.rkt
1 #lang racket
2
3 #|
4
5 It won't work in the new definition because the new let translates to a lambda and application
6 of the lambda to the expressions. When we do that, evaluation of one expression needs the other.
7
8 It will work with the definition given in the text because the expressions are inside the lambda.
9
10 |#