Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.0-JSR-6
-
None
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.