Skip to content

Instantly share code, notes, and snippets.

@braynm
Last active June 16, 2017 08:08
Show Gist options
  • Save braynm/fc9998cd37cf7eb4da84a50311481a82 to your computer and use it in GitHub Desktop.
Save braynm/fc9998cd37cf7eb4da84a50311481a82 to your computer and use it in GitHub Desktop.
Elixir fns
defmodule Fns do
def length([x|xs], acc) do
length(xs, acc + 1)
end
def length([], acc), do: acc
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment