Rexx-推


这用于将值推入 Rexx 堆栈。

句法

push value 

参数

  • Value - 需要压入堆栈的值。

返回值

没有任何

例子

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

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

输出

TUTORIAL
rexx_instructions.htm