Skip to content

Instantly share code, notes, and snippets.

@dgfitch
Created November 15, 2010 22:11
Show Gist options
  • Save dgfitch/701050 to your computer and use it in GitHub Desktop.
Save dgfitch/701050 to your computer and use it in GitHub Desktop.
visitor again
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