A function has a parameter named input and a local binding named result. No closure is returned. What can code outside that function access directly?
Explanation
Parameters and local bindings belong to the function's own scope, so outside code cannot directly resolve input or result from that call. Returning a value is not the same as exposing those bindings, and only a returned closure could retain private internal access.