Created
April 15, 2018 15:51
-
-
Save Edmundworks/324cd9203883d2d64c8c9cd3f2323527 to your computer and use it in GitHub Desktop.
SICP 1.9
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
(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