RosettaCodeData/Task/Literals-String/REXX/literals-string-1.rexx

7 lines
130 B
Rexx
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
char1 = "A"
char2 = 'A'
str = "this is a string"
another = 'this is also a string'
escape1 = "that's it!"
escape2 = 'that''s it!'