雷克斯-nop


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

句法

nop

参数

没有任何

返回值

没有任何

例子

/* Main program */ 
options arexx_bifs 
status = 'Yes' 

if status = 'YES' 
   then nop 

输出

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

rexx_instructions.htm