Created
January 15, 2021 16:37
-
-
Save ourmaninamsterdam/d80e540ebce8dba01cce94e3f199b3a6 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 (find name dir) | |
(local [(define (c1 n rdirs rimgs) | |
(or (string=? name n) | |
rdirs | |
rimgs)) | |
(define (c2 rdir rdirs) | |
(or rdir rdirs)) | |
(define (c3 img rimgs) | |
false)] | |
(fold-dir c1 c2 c3 false false dir))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment