Created
February 13, 2013 05:53
-
-
Save ayato-p/4942552 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 (exp-of-ten x) | |
(expt 10 x)) | |
(define (foo x context) | |
(print (context x))) | |
(define (bar list context) | |
(for-each | |
(lambda (listp) (foo listp context)) | |
list)) | |
(bar '(1 2 3 4 5 6) exp-of-ten) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment