When a closure is applied, an activation (also "activation record") is created, containing
The procedure executes with the activation as the current environment. If the function contains let-expressions, they produce local bindings on evaluation, just like any other let-expression.
(* Declare f *) fun f(x, y) = let fun nested(z) = a + x + z in nested(y) end; (* Apply f *) f(2,10); |
![]() |
Notice that the nested closure's environment pointer points to the scope of the let in which it was created. When nested is applied, its activation is created just like any other function's:
(* Declare f *) fun f(x, y) = let fun nested(z) = a + x + z in nested(y) end; (* Apply f *) f(2,10); |
![]() |