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

m
→‎{{header|ooRexx}}: fighting tags :-(
m (→‎{{header|ooRexx}}: fix lang tag)
m (→‎{{header|ooRexx}}: fighting tags :-()
Line 66:
 
=={{header|ooRexx}}==
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.
<lang oorexx/*REXX program determines what characters are valid for REXX symbols.*/
Line 78:
symbol_characters=symbol_characters || c /* add to list. */
end
say 'symbol characters:' symbol_characters /*display all */ </lang>
{{out}}
<pre>REXX-ooRexx_4.2.0(MT)_32-bit 6.04 22 Feb 2014
2,295

edits