Skip to content

Instantly share code, notes, and snippets.

@rentalcustard
Created August 9, 2011 17:53
Show Gist options
  • Save rentalcustard/1134714 to your computer and use it in GitHub Desktop.
Save rentalcustard/1134714 to your computer and use it in GitHub Desktop.
Things in SICP that blew my mind
; 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