Skip to content

Instantly share code, notes, and snippets.

@crguezl
Created September 15, 2014 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crguezl/52f519f69f78a5cd213c to your computer and use it in GitHub Desktop.
Save crguezl/52f519f69f78a5cd213c to your computer and use it in GitHub Desktop.
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