Created
January 9, 2019 22:33
-
-
Save Tombarr/709589cadc1adb5dd33f4fb05437e424 to your computer and use it in GitHub Desktop.
Addition in Elixir (with Typespec)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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