Created
September 15, 2014 20:11
-
-
Save crguezl/52f519f69f78a5cd213c 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
defmodule MyList do | |
def sum([]), do: 0 | |
def sum([ head | tail ]), do: head + sum(tail) | |
end | |
IO.puts MyList.sum [1, 2, 3, 4] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment