This code:
fun main()
"åäö".println
Just("åäö").println
("åä","ö").println
["åäö"].println
Prints the following:
åäö
Just("\xE5\xE4\xF6")
("\xE5\xE4","\xF6")
["\xE5\xE4\xF6"]
I'm using Koka 3.1.2 on Fedora 41.
This does not seem like the intended behaviour?