Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 proc iml 中编写了一个模块,并尝试使用 call fuctiong 和提供的参数来调用它。
但它抛出了错误:为功能模块执行运行。
有什么建议吗?
错误消息表明您已经定义了一个返回值的函数('function module'),因此您需要像这样调用它: x = MyFunction(x,y,z);
不能使用 CALL 语句调用函数,只能调用不返回值的子例程。