Created
August 9, 2011 17:53
-
-
Save rentalcustard/1134714 to your computer and use it in GitHub Desktop.
Things in SICP that blew my mind
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Observe that our model of evaluation allows for combinations whose operators are compound | |
; expressions. Use this observation to describe the behaviour of the following procedure: | |
(define (a-plus-abs-b a b) | |
((if (> b 0) + -) a b)) | |
; (p. 21) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment