Terminal control/Display an extended character: Difference between revisions

Add NetRexx implementation
(→‎{{header|Lasso}}: Added Lasso contribution)
(Add NetRexx implementation)
Line 203:
=={{header|Mathematica}}==
<lang Mathematica>FromCharacterCode[{163}]</lang>
 
=={{header|NetRexx}}==
<lang NetRexx>/* NetRexx */
options replace format comments java crossref symbols binary
 
runSample(arg)
return
 
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
method runSample(arg) private static
GBP = '\u00a3' -- unicode code point
say GBP
GBP = '£' -- if the editor's up to it
say GBP
return
</lang>
{{out}}
<pre>
£
£
</pre>
 
=={{header|Pascal}}==
Anonymous user