Markus wrote: >Here's a simple example of where ... is very nice to have. You want to >cut a deck and card x, so that x is on the top after the cut: > >deck = deck.values(x..-1,0...x) > >*grin* Try doing that as concisely without "..." > >-- MarkusQ > > deck = deck.values(x..-1,0..x-1) Zach