Skip to content

Instantly share code, notes, and snippets.

@coderdan
Last active January 4, 2018 22:16
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 coderdan/fa404b7cfe47c5fa144d602b3f2c42a0 to your computer and use it in GitHub Desktop.
Save coderdan/fa404b7cfe47c5fa144d602b3f2c42a0 to your computer and use it in GitHub Desktop.
defprotocol Foo do
def example()
end
defimpl Foo, for: [List, MyType] do
def example do
"Example"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment