Skip to content

Instantly share code, notes, and snippets.

@cemerick
Created June 18, 2010 03:32
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 cemerick/80c5c990b66bf8f04147 to your computer and use it in GitHub Desktop.
Save cemerick/80c5c990b66bf8f04147 to your computer and use it in GitHub Desktop.
user=> (loop [continue true]
(try
(when continue (recur false))
(finally
(println "foo"))))
foo
nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment