From: Michael Fellinger Date: 2007-08-31T14:46:20+09:00 Subject: Re: Ruby stupidities On 8/31/07, Damjan Rems wrote: > > It is a matter of how you look at it: > > irb(main):002:0> "abc"[0,1] == "a" > => true It's a matter that is fixed already, and waiting for you under the christmas tree: [manveru@pi ~]$ RUBYOPT= irb19 [RUBY_VERSION, RUBY_PLATFORM, RUBY_RELEASE_DATE] # ["1.9.0", "i686-linux", "2007-08-28"] "foo"[0] # "f" "foo"[0] == "f" # true ^ manveru