Created
December 9, 2012 00:48
-
-
Save jorgenschaefer/4242787 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
| (let loop ((plist the-plist)) | |
| (when (not (null? plist)) | |
| ;; Here you do something that might or might not result in | |
| ;; something. We do not know, "..." could be anything. | |
| (let ((key (car plist)) | |
| (val (cadr plist))) | |
| ...) | |
| ;; But here, you ignore the result, and just loop over the list. | |
| (loop (cddr plist)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment