Michel Demazure wrote:
> Strange !
> 
> arr = [1,2,3,4,5]
> arr[0,2] = nil
> => ruby 1.8 : arr = [3,4,5]
> => ruby 1.9 : arr = [nil, 3,4,5]

that might be a bugI'd ask the core people.
-=r
-- 
Posted via http://www.ruby-forum.com/.