Skip to content

Instantly share code, notes, and snippets.

@crufter
Created June 20, 2012 09:51
Show Gist options
  • Save crufter/2959129 to your computer and use it in GitHub Desktop.
Save crufter/2959129 to your computer and use it in GitHub Desktop.
func l (run
recover (+ 1 1)
println "Just a casual println..."
panic "Get out of here."
println "This shall not run.")
println (l)
println "Recovered"
Produces:
Just a casual println...
2
Recovered
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment