Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

/loopy.clj Secret

Created March 19, 2014 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a51f8d487fbdeca53cbe to your computer and use it in GitHub Desktop.
Save anonymous/a51f8d487fbdeca53cbe to your computer and use it in GitHub Desktop.
(loop [[task & more] tasks]
(let [result (task)]
(if (:error result)
result
(when more
(recur more)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment