Rexx - 解释


解释或执行定义的指令。

句法

Interpret command 

参数

  • command - 发送到解释指令的命令。

返回值

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

例子

/* Main program */ 
options arexx_bifs interpret 
say 'Hello'

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

输出

Hello
rexx_instructions.htm