Notice that it "is not" in reverse order! like I select in the range.
Description
If I use backwards range like this:
x = "matrix"
println x[5..0]
I willl get : "xirtam".
But if I select, another index:
x = "matrix"
println x[0, 5..0]
The result is : mmatrix
Notice that it "is not" in reverse order! like I select in the range.
Fixed in head