CS CS

What is Lambda Calculus

Lambda Calculus is a simple and very sparse notation for representing and applying functions.

The format is:λx.xWhere

  • λ 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}

Read More