Created
June 19, 2011 12:45
-
-
Save skilldrick/1034238 to your computer and use it in GitHub Desktop.
SICP craziness
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
;;segments is a function that takes an agenda and returns its segments | |
(define (segments agenda) (cdr agenda)) | |
;;Then, inside another function: | |
(let ((segments (segments agenda))) | |
;;In this let, segments is the return value of segments. WTF. | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From page 284, Section 3.3.4.