Last active
July 21, 2016 02:57
-
-
Save gwincr11/e88e291de500738bfe7429f70fcea7b9 to your computer and use it in GitHub Desktop.
This file contains 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 MyList do | |
def sum([], total), do: total | |
def sum([ head | tail], total), do: sum(tail, head+total) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
woo hoo