Literals/String: Difference between revisions

Content deleted Content added
m →‎{{header|Retro}}: update for retro12
Line 2,051: Line 2,051:


=={{header|Retro}}==
=={{header|Retro}}==
Strings begin with a single quote and end on space. Underscores are replaced with spaces.
Strings are enclosed in double quotes,
and can contain anything other than a double quote.


ASCII characters are prefixed by a single quote.
ASCII characters are prefixed by a single dollar sign.


<lang Retro>'c
<lang Retro>$c
"hello, world!"</lang>
'hello,_world!
'This_is_'a_string'
</lang>


=={{header|REXX}}==
=={{header|REXX}}==