- Rexx 教程
- Rexx - 首页
- Rexx - 概述
- Rexx - 环境
- Rexx - 安装
- Rexx - 安装插件
- Rexx - 基本语法
- Rexx - 数据类型
- Rexx - 变量
- Rexx - 操作符
- Rexx - 数组
- Rexx - 循环
- Rexx - 决策制定
- Rexx - 数字
- Rexx - 字符串
- Rexx - 函数
- Rexx - 堆栈
- Rexx - 文件 I/O
- Rexx - 文件函数
- Rexx - 子例程
- Rexx - 内置函数
- Rexx - 系统命令
- Rexx - XML
- Rexx - Regina
- Rexx - 解析
- Rexx - 信号
- Rexx - 调试
- Rexx - 错误处理
- Rexx - 面向对象
- Rexx - 可移植性
- Rexx - 扩展函数
- Rexx - 指令
- Rexx - 实现
- Rexx - Netrexx
- Rexx - Brexx
- Rexx - 数据库
- 手持式和嵌入式
- Rexx - 性能
- Rexx - 最佳编程实践
- Rexx - 图形用户界面
- Rexx - Reginald
- Rexx - Web 编程
- Rexx 有用资源
- Rexx - 快速指南
- Rexx - 有用资源
- Rexx - 讨论
Rexx - push
它用于将一个值推送到 Rexx 堆栈上。
语法
push value
参数
值 - 需要推送到堆栈上的值。
返回的值
无
示例
/* Main program */ options arexx_bifs push 'Tutorial' pull input say input
当运行上面的程序时,我们将得到以下结果。
输出
TUTORIAL
rexx_instructions.htm
广告