Rexx - Interpret 解释命令

解释或执行定义的指令。

语法

Interpret command 

参数

  • command − 命令发送到解释指令。

返回值

返回发送到解释指令的命令的输出。

示例

/* 主程序 */
options arexx_bifs interpret 
say 'Hello'

当我们运行上面的程序时,我们将得到以下结果。

输出

Hello

❮ rexx_instructions.html