Created
May 24, 2017 18:01
-
-
Save b-coimbra/c5fa63b88c559d310bdf46d57891869c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: UTF-8 | |
module Kernel | |
alias_method :λ, :lambda | |
end | |
Y = λ { |f| | |
λ { |x| x.(x) }.( | |
λ {|x| f.( | |
λ {|v| x.(x).(v)}) } | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment