Rexx - nop 函数

该函数表示不执行任何操作。 该命令通常用在if 语句中。

语法

nop

参数

None

返回值

None

示例

/* 主程序 */
options arexx_bifs 
status = 'Yes' 

if status = 'YES' 
   then nop 

输出

当我们运行上面的程序时不会返回任何结果

❮ rexx_instructions.html