Terminal control/Unicode output: Difference between revisions

Content added Content deleted
(Nimrod -> Nim)
(→‎{{header|Julia}}: A new entry for Julia)
Line 210: Line 210:
$ jq -M -r -n -f Terminal_control.jq
$ jq -M -r -n -f Terminal_control.jq

=={{header|Julia}}==
{{works with|Linux}}
<lang Julia>
c = '\u25b3'

if ismatch(r"UTF", get(ENV, "LANG", ""))
println("This output device supports Unicode: ", c)
else
println("This output device does not support Unicode.")
end
</lang>

{{out}}
<pre>
This output device supports Unicode: △
</pre>


=={{header|Lasso}}==
=={{header|Lasso}}==