From: Robert Klemme Date: 2008-02-10T10:09:56+09:00 Subject: Re: Recursive array bug? On 10.02.2008 01:08, Siep Korteling wrote: > Yes it does. I had to think real hard about it. With a[0][0] I expected > to get a value from a matrix (but there is no matrix, give me the blue > pill please), when I'm actually calling a method from a string. Why it > returns 97 is beyond me at this moment, but it's not relevant. Duck irb(main):001:0> "a"[0] => 97 irb(main):002:0> 97.chr => "a" irb(main):003:0> ?a => 97 Cheers robert