Skip to content

Instantly share code, notes, and snippets.

@elbow-jason
Created June 15, 2015 21:40
Show Gist options
  • Save elbow-jason/c46eb6a39f1656a2f0c7 to your computer and use it in GitHub Desktop.
Save elbow-jason/c46eb6a39f1656a2f0c7 to your computer and use it in GitHub Desktop.
try and rescue
defmodule Trier do
require IEx
def thing do
x = 0
try do
1 / x
rescue
e in ArithmeticError ->
e
IEx.pry
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment