Created
January 17, 2016 19:39
-
-
Save amacgregor/93b23d7260b62a0b72e5 to your computer and use it in GitHub Desktop.
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
@doc """ | |
Sums all the values inside the provided list | |
""" | |
@spec count(list) :: non_neg_integer | |
def count([]), do: 0 | |
def count([_|tail]) do | |
count(tail) + 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment