This term originated with the lambda calculus, a turing-complete model of computation which uses only functions, called lambda expressions. They are of the form λ.; the point is that occurrences of the inside the are substituted with the values of the arguments. An example is λx.x, the identity function.
In programming languages such as lisp, c# and python, lambda is an operator used to denote anonymous functions or closures, following the usage of lambda calculus.
