RosettaCodeData/Task/Literals-String/REXX/literals-string-1.rexx
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

6 lines
130 B
Rexx

char1 = "A"
char2 = 'A'
str = "this is a string"
another = 'this is also a string'
escape1 = "that's it!"
escape2 = 'that''s it!'