Is it possible to pass a reference to a Function?
For example when I run this script: someFunc = Function( {arg},
{},
Print( arg );
);
executor = Function( {fn, arg},
{},
fn( arg );
);
executor( someFunc, "this string" )
I get an error, that seems to imply that I am calling someFunc when I am intending to pass a reference to it to executor. I am able to pass a reference by defining the function in the invocation, e.g.executor = Function(
...