(string-upcase "Gauß") => "GAUß"
(string-downcase "Σo") => "σo"
(string-downcase "OΣ") => "oσ"
But the correct would be:
(string-upcase "Gauß") => "GAUSS"
(string-downcase "Σo") => "σo"
(string-downcase "OΣ") => "oς"
(I have taken the examples from the Erlang page on Unicode, https://www.erlang.org/doc/apps/stdlib/unicode_usage.html)
I see that Bigloo and Guile does the same as STklos; Chibi and Chez do not.
But the correct would be:
(I have taken the examples from the Erlang page on Unicode, https://www.erlang.org/doc/apps/stdlib/unicode_usage.html)
I see that Bigloo and Guile does the same as STklos; Chibi and Chez do not.