Skip to content

Instantly share code, notes, and snippets.

@joeljackson
Created March 25, 2016 02:40
Show Gist options
  • Save joeljackson/3358b0204837f314f176 to your computer and use it in GitHub Desktop.
Save joeljackson/3358b0204837f314f176 to your computer and use it in GitHub Desktop.
Practical function matching example
add_subscription(user, subscription)
def add_subscription(%User{subscription: nil}, subscription) do
#Add subscription here
end
def add_subscription(_user, _subscription) do
raise "This user already has a subscription"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment