(I found this by google search.)
That doesn't crash, but more correct is `[6 .. <test.len]`, since ranges are inclusive. The `<` is short-hand for "minus 1". The result is " World" (string of length 6==11+1-6) either way.
(I found this by google search.)
That doesn't crash, but more correct is `[6 .. <test.len]`, since ranges are inclusive. The `<` is short-hand for "minus 1". The result is " World" (string of length 6==11+1-6) either way.