Function
f(x, y) := {
...
}Closure (Anonymous Function)
#(x, y) => {
==(x + y)==
}
#(x, y) => | x + y |/*
* Bring variables into the expression.
*/
@(x, y) -> {
x + y
}
@(x, y) -> | x + y |Last updated