Skip to content

Instantly share code, notes, and snippets.

@bonkydog
Created October 23, 2012 03:11
Show Gist options
  • Select an option

  • Save bonkydog/3936435 to your computer and use it in GitHub Desktop.

Select an option

Save bonkydog/3936435 to your computer and use it in GitHub Desktop.
recursive doall
(defn doall-recur [s]
(if (seq? s)
(doall (map doall-recur
s))
s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment