From: Hal Fulton Date: 2006-03-31T14:39:58+09:00 Subject: Re: Most simple way to do "array + array => hash" Meino Christian Cramer wrote: > Hi, > > Is there a ruby-like way to make an hash from two equeal sized > arrays, one containing the keys only and the other the values ? > > Thanks a lot for any help in advance ! > Would this work? Hash[*arr1.zip(arr2)] Hal