Rexx - push



它用于将一个值推送到 Rexx 堆栈上。

语法

push value 

参数

  • - 需要推送到堆栈上的值。

返回的值

示例

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

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

输出

TUTORIAL
rexx_instructions.htm
广告