4 lines
223 B
Text
4 lines
223 B
Text
if(System.isUnix and T("LC_CTYPE","LC_LANG","LANG").apply(System.getenv)
|
|
.filter().filter("holds","UTF"))
|
|
println("This terminal supports UTF-8 (\U25B3;)");
|
|
else println("I have doubts about UTF-8 on this terminal.");
|