Skip to content

Instantly share code, notes, and snippets.

@tonini
Last active August 29, 2015 14:07
Show Gist options
  • Save tonini/485e50ea96a7fe70362e to your computer and use it in GitHub Desktop.
Save tonini/485e50ea96a7fe70362e to your computer and use it in GitHub Desktop.
# Style 1
defmodule Math do
def double_each([]), do: []
def double_each([head|tail]) do
[head * 2 | double_each(tail)]
end
end
# Style 2
defmodule Math do
def double_each([head|tail]) do
[head * 2 | double_each(tail)]
end
def double_each([]) do
[]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment