Created
July 26, 2012 14:04
-
-
Save soegaard/3182213 to your computer and use it in GitHub Desktop.
What is the expected result of the following?
This file contains 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
(for/fold ([val #f] [stop? #f]) | |
(#:unless stop? | |
[x '(1 3 5 7 4 9 6)] | |
#:when (even? x)) | |
(values x #t)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment