Skip to content

Instantly share code, notes, and snippets.

@banister
Created March 24, 2009 18:51
Show Gist options
  • Save banister/84289 to your computer and use it in GitHub Desktop.
Save banister/84289 to your computer and use it in GitHub Desktop.
module YCombinator
def y_comb(&generator)
->(x){
->(*args){
generator.(x.(x)).(*args)
}
}.(->(x){
->(*args){
generator.(x.(x)).(*args)
}
})
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment