Implement till 2.76

This commit is contained in:
2020-11-17 13:33:55 -05:00
parent aedc20b585
commit c061a25798
8 changed files with 307 additions and 9 deletions

View File

@@ -161,7 +161,9 @@
; Exercise 1.34. Suppose we define the procedure (define (f g) (g 2)). What
; happens if we (perversely) ask the interpreter to evaluate the combination
; (f ; f)? Explain.
; (f f)? Explain.
; (f f) -> (f 2) -> (2 2)
; The result would be (2 2) and 2 is not applicable.