Rexx 编程/Rexx 指南/大小写敏感
外观
Rexx 解释器不区分大小写。这意味着包含小写字母的标识符名称和关键字被视为与包含大写字母的那些相同。
/* These variables are all the same */
count = 1 Count = COUNT + 1 say count
文字字符串中保留字母大小写。
say 'Hello!' /* Hello! */ SAY 'HELLO!' /* HELLO! */
在 Rexx 中,比较运算符区分大小写,因此包含不同字母大小写的字符串将不被解释为匹配字符串。
if "abc" = "ABC" then say "The strings are the same!" /* This does not happen because the strings are not the same */