fn builtin_call( args: &[RValue], named: &[(String, RValue)], ) -> Result<RValue, RError>
call(name, ...) — construct an unevaluated function call expression. call("f", 1, 2) returns the language object f(1, 2).
call(name, ...)
call("f", 1, 2)
f(1, 2)