Skip to content

Instantly share code, notes, and snippets.

@ian-plosker
Created April 19, 2011 13:04
Show Gist options
  • Save ian-plosker/927513 to your computer and use it in GitHub Desktop.
Save ian-plosker/927513 to your computer and use it in GitHub Desktop.
Erlang y-combinator
y(M) -> (fun(X) -> X(X) end)(fun (F) -> M(fun(A) -> (F(F))(A) end) end).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment