Created
May 13, 2018 15:10
-
-
Save Edmundworks/3b8627d3ecc1564701f111e234673aa3 to your computer and use it in GitHub Desktop.
SICP 1.10 c
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
(A x y) | |
(A 3 3) | |
(A (- 3 1) | |
(A 3 (- 3 1)) | |
(A 2 | |
(A 3 2)) | |
(A 2 | |
(A (- 3 1) | |
(A 3 (- 2 1)))) | |
(A 2 | |
(A 2 (A 3 1))) | |
(A 2 | |
(A 2 2)) | |
(A 2 | |
(A (- 2 1) | |
(A 2 (- 2 1)))) | |
(A 2 | |
(A 1 | |
(A 2 1))) | |
(A 2 | |
(A 1 2) | |
(A 2 | |
(A (- 1 1) | |
(A 1 (- 2 1))))) | |
(A 2 | |
(A 0 | |
(A 1 1))) | |
(A 2 | |
(A 0 2)) | |
(A 2 4) | |
Thats the same as the previous one! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment