Rexx - push 指令

这用于将值推送到 Rexx 堆栈上。

语法

push value 

参数

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

返回值

None

示例

/* 主程序 */
options arexx_bifs 
push 'Tutorial' 
pull input 
say input 

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

输出

TUTORIAL

❮ rexx_instructions.html