From: Bernardo Monteiro Rufino Date: 2007-12-08T08:25:04+09:00 Subject: Re: Problem with Hash of Arrays ------=_Part_10502_26316750.1197069906819 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline In addition, to create different Arrays objects use a block... irb(main):001:0> a = Hash.new{|hash, key| hash[key] = Array.new;} => {} irb(main):002:0> a[:first] => [] irb(main):003:0> a[:first] << "test" => ["test"] irb(main):004:0> a[:sec] => [] ------=_Part_10502_26316750.1197069906819--