Rexx - nop



This function means to perform no operation. This command is normally used in if statements.

Syntax

nop

Parameters

None

Return Value

None

Example

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

if status = 'YES' 
   then nop 

Output

When we run the above program no result will be returned.

rexx_instructions.htm
Advertisements