Skip to content

Instantly share code, notes, and snippets.

@rhysforyou
Last active December 22, 2015 02:59
Show Gist options
  • Select an option

  • Save rhysforyou/18e306c12c8f220fa8b8 to your computer and use it in GitHub Desktop.

Select an option

Save rhysforyou/18e306c12c8f220fa8b8 to your computer and use it in GitHub Desktop.
defmodule mylist do
def reverse([]), do: []
def reverse([ head | tail ]), do: reverse(tail) ++ [head]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment