Skip to content

Instantly share code, notes, and snippets.

View SOLenG's full-sized avatar

na.perruchot SOLenG

  • France
View GitHub Profile
@SOLenG
SOLenG / Lambdas.js
Last active September 26, 2017 16:08
Functional
// λx.λy.y fun x -> fun y -> y
var False = function (x) {
return function (y) {
return y;
};
};
// λx.λy.x
var True = function (x) {
return function (y) {
return x;