Skip to content

Instantly share code, notes, and snippets.

@FPGro
FPGro / monkey.jl
Created April 22, 2021 09:51
Catch the monkey
"""
A more convenient syntax for try/catch clauses.
You know that you want it!
Instead of the boring old:
```julia
try
foo()
catch e
bar(e)