Skip to content

Instantly share code, notes, and snippets.

@manpages
Last active December 11, 2015 08:48
Show Gist options
  • Save manpages/4575616 to your computer and use it in GitHub Desktop.
Save manpages/4575616 to your computer and use it in GitHub Desktop.
Neat fixed point combinator implementation in Elixir
y = fn(f) ->
g = fn(g) -> f.((g.(g)).(&1)) end
g.(g)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment