Idiomatically determine all the characters that can be used for symbols: Difference between revisions

Content added Content deleted
(→‎{{header|ooRexx}}: copied REXX Version 2 here)
m (→‎{{header|ooRexx}}: fix lang tag)
Line 78: Line 78:
symbol_characters=symbol_characters || c /* add to list. */
symbol_characters=symbol_characters || c /* add to list. */
end
end
say 'symbol characters:' symbol_characters /*display all */ {{out}}
say 'symbol characters:' symbol_characters /*display all */ </lang>
{{out}}
<pre>REXX-ooRexx_4.2.0(MT)_32-bit 6.04 22 Feb 2014
<pre>REXX-ooRexx_4.2.0(MT)_32-bit 6.04 22 Feb 2014
symbol characters: !.0123456789?ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz</pre>
symbol characters: !.0123456789?ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz</pre>