Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 9, 2019 22:33
Show Gist options
  • Save Tombarr/709589cadc1adb5dd33f4fb05437e424 to your computer and use it in GitHub Desktop.
Save Tombarr/709589cadc1adb5dd33f4fb05437e424 to your computer and use it in GitHub Desktop.
Addition in Elixir (with Typespec)
defmodule Math do
@spec add(number, number) :: number
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