Skip to content

Instantly share code, notes, and snippets.

@Edmundworks
Created April 15, 2018 15:51
Show Gist options
  • Save Edmundworks/324cd9203883d2d64c8c9cd3f2323527 to your computer and use it in GitHub Desktop.
Save Edmundworks/324cd9203883d2d64c8c9cd3f2323527 to your computer and use it in GitHub Desktop.
SICP 1.9
(define (+ 4 5)
(if (= 4 0)
5
(inc (+ (dec 4) 5))))
inc (+ 3 5)
inc 8
9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment