Rexx - push



This is used to push a value onto the Rexx stack.

Syntax

push value 

Parameters

  • Value − The value which needs to be pushed onto the stack.

Return Value

None

Example

/* Main program */ 
options arexx_bifs 
push 'Tutorial' 
pull input 
say input 

When we run the above program we will get the following result.

Output

TUTORIAL
rexx_instructions.htm
Advertisements