Terminal control/Unicode output: Difference between revisions

Content added Content deleted
(Added zkl)
(Add Nimrod)
Line 195: Line 195:
}
}
}</lang>
}</lang>

=={{header|Nimrod}}==
<lang nimrod>import os, strutils

if "utf" in getEnv("LANG").toLower:
echo "Unicode is supported on this terminal and U+25B3 is: △"
else:
echo "Unicode is not supported on this terminal."</lang>


=={{header|Perl 6}}==
=={{header|Perl 6}}==