Obtains a reference to the specified function.
'&name' - the name of the function to obtain the handle for.
$null if the function doesn't exit or a scalar containing the function object.
sub foo { println("foo function w/ $1"); } foo("new color protection"); $func = function('&foo'); [$func: "cool spikes"];
foo function w/ new color protection foo function w/ cool spikes