Skip to content

Instantly share code, notes, and snippets.

@flori
Created May 15, 2012 19:33
Show Gist options
  • Save flori/2704436 to your computer and use it in GitHub Desktop.
Save flori/2704436 to your computer and use it in GitHub Desktop.
Y, oh Y in Ruby 1.9
Y = -> f { -> g { g[g] }[ -> h { -> *x { f[h[h]][*x] } } ] }
Y[ -> f { -> n { n < 1 ? 1 : n * f[n-1] } } ][23]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment