再补一点, 如果你的FUNCTION放在本地里面. 那就不用CALL了, 可以直接 函数名(参数);就可以调用了. 例: function order (out c) {const a=1,b=2; c=a+b; pause(c); }; order();