Meta.callFunction
Meta.callFunction($functionName, $arguments=[]) -> any
Description
Call a user function in the current namespace, with an optional List of arguments.
Meta.callFunction('addNumbers', [1, 2])
//= 3
fun addNumbers($a, $b) {
return $a + $b
}