Created
December 17, 2012 02:19
-
-
Save yao2030/4315360 to your computer and use it in GitHub Desktop.
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 (split op1 op2) | |
(lambda (painter n) | |
(if (= n 0) | |
painter | |
(let ((smaller ((split op1 op2) painter (- n 1)))) | |
(op1 painter (op2 smaller smaller)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment