Skip to content

Instantly share code, notes, and snippets.

@guilleiguaran
Created February 6, 2015 15:33
Show Gist options
  • Save guilleiguaran/05db8877e0c71ea6e7e5 to your computer and use it in GitHub Desktop.
Save guilleiguaran/05db8877e0c71ea6e7e5 to your computer and use it in GitHub Desktop.
defmodule Enum do
def each([], _fun), do: nil
def each([head | tail], fun) do
fun.(head)
each(tail)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment