From: Bill Kelly Date: 2009-05-13T08:49:24+09:00 Subject: Re: Whaaaaat? From: "Tom Cloyd" > > p [0..5].include? 0 > false > p [0..5].member? 0 > false > > This is nuts. The world is flat, evidently. > > Can someone explain this nonsense? Same reason as this: >> ["hello world"].include? "hell" => false We're asking whether the array contains a particular object. Regards, bill