Rexx - 询问命令


该命令用于从默认输入流中读取一行。

句法

variable = ask 

参数

  • 变量- 用于存储用户输入的值的变量。

返回值

没有任何

例子

/* Main program */ 
input = ask 
say input

输出

当我们运行上面的程序时,我们将得到以下结果。如果我们输入值 hello,我们将得到 hello 的输出。

ASK
rexx_netrexx.htm