Rexx 编程/Rexx 入门/引号
外观
在 rexx 中,字符串可以使用单引号或双引号来引用。
为了在字符串中使用字面单引号字符,可以使用双引号将字符串括起来
say "Here's how we use an apostrophe within a string"
为了在字符串中使用字面双引号字符,可以使用单引号将字符串括起来
say 'Here we are using "doublequotes" within a string'
可以使用连续的引号来表示字符串中的单个引号
say 'Heres back to back' /* Note the back to back quotation mark for an apostrophe */