Skip to content

Instantly share code, notes, and snippets.

@mzemel
Last active October 21, 2015 22:59
Show Gist options
  • Save mzemel/80fed4de98fcc62e5ff1 to your computer and use it in GitHub Desktop.
Save mzemel/80fed4de98fcc62e5ff1 to your computer and use it in GitHub Desktop.
defmodule Calculator do
def add(a, b) do
a + b
end
def add(a, b), do: a + b
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment