Skip to content

Instantly share code, notes, and snippets.

@Mizzlr
Created June 16, 2016 08:58
Show Gist options
  • Save Mizzlr/33352e0d027ef46424b7505af3cd44cf to your computer and use it in GitHub Desktop.
Save Mizzlr/33352e0d027ef46424b7505af3cd44cf to your computer and use it in GitHub Desktop.
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