Created
November 15, 2010 22:11
-
-
Save dgfitch/701050 to your computer and use it in GitHub Desktop.
visitor again
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 rec visitor dir = | |
seq { | |
for subdir in listOfFolders dir do | |
yield subdir | |
yield! visitor subdir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment