Anonymous function
Appearance
In computing, an anonymous function is a function that has no name.
Example in Python
<source lang="python". (lambda x: (lambda y: x * y)) </python>
The above code can be executed as a function:
<source lang="python"> >>>(lambda x: (lambda y: x * y))(3)(4) 12 </python>