What is Lambda Calculus
Lambda Calculus is a simple and very sparse notation for representing and applying functions. The format is: λx.x Where λ signifies it is a Lambda function The x before the period represents the input to the function The function body follows the period So λx.x is the equivalent of: function(x) { return x } or […]