From: Siep Korteling Date: 2008-02-09T07:46:34+09:00 Subject: Re: alias_method and initialize Leon Bogaert wrote: > Why isn't tests[1] filled? I tried instance_eval and stuff but I don't > exactly understand what I'm supposed to do... I do not understand what you are trying to achieve. Anyway, tests[1] is "ok". Arrays are zero based, the counting starts at zero. ar=["a","b"] p ar[0] returns "a" -- Posted via http://www.ruby-forum.com/.