(if (< start 0) (= start (+ start (len seq))))
(subseq "hello" 0 -1) "hello"
(subseq "hello" 0 -1) "hell"
"hello"[:-1] "hell"
-----
"ruby"[0 .. -1] #=> "ruby" "ruby"[0 ... -1] #=> "rub"
> "hello"[-3..-1] "llo"
> (subseq "hello" -4) "ello"
(subseq "hello" 0 'end) "hello" (subseq "hello" 0 -1) "hell"
> (subseq "foobar" 2 -2) "oba"