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

Content added Content deleted
m (→‎{{header|ooRexx}}: fix lang tag)
m (→‎{{header|ooRexx}}: fighting tags :-()
Line 66: Line 66:


=={{header|ooRexx}}==
=={{header|ooRexx}}==
Although this program does not use any feature that is not in '''Classic''' Rexx,
Although this program does not use any feature that is not in Classic Rexx,
it is included here to show what characters are valid for symbols in ooRexx.
it is included here to show what characters are valid for symbols in ooRexx.
<lang oorexx/*REXX program determines what characters are valid for REXX symbols.*/
<lang oorexx/*REXX program determines what characters are valid for REXX symbols.*/
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 */ </lang>
say 'symbol characters:' symbol_characters /*display all */ </lang>
{{out}}
{{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