On Sunday, 26 July 2015 12:18:40 UTC+2, Scott Jones wrote:
>
> Could you give an example? 
> I've been trying to fix any Unicode related bugs I've found in 0.4


julia> x =utf16("string 1")
"string 1"

julia> y = " string2"
" string2"

julia> println(typeof(x), "\t", typeof(y),"\t" ,typeof(x*y))
UTF16String     ASCIIString     ASCIIString

 The same occurs for UTF32String. It seems the promotion rules are just a 
bit strange.

Reply via email to