Created
June 16, 2016 08:58
-
-
Save Mizzlr/33352e0d027ef46424b7505af3cd44cf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var ZERO = function (f) { | |
return function(z) { | |
return z; | |
}; | |
}; | |
var SUCC = function (n) { | |
return function (f) { | |
return function (z) { | |
return f(n(f)(z)); | |
}; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment