Rexx 编程/如何使用 Rexx/变量赋值
外观
想要为变量赋值一个数字,我们使用等号 (=)。左侧为变量名,右侧包含一个值或一个表达式,可能包含其他变量。
x = 3 y = 5 z = x * y /* z is now 15 */
它不必只是数字。允许使用任何字符串或有效表达式。
greeting = "Hello" audience = "world" sentence = greeting"," audience"!" say sentence
想要为变量赋值一个数字,我们使用等号 (=)。左侧为变量名,右侧包含一个值或一个表达式,可能包含其他变量。
x = 3 y = 5 z = x * y /* z is now 15 */
它不必只是数字。允许使用任何字符串或有效表达式。
greeting = "Hello" audience = "world" sentence = greeting"," audience"!" say sentence