------ art_11888_938189.1143060959764
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
In the code below it appears Ruby is permitting duplicate keys. What's
happening?
--Brian
h = {}
h[{}] = "test1" #key is an empty hash
h[{}] = "test2" #2nd key is an empty hash -- two duplicate keys?
h.size # 2
{} == {} # => true empty hashes are equal
------ art_11888_938189.1143060959764--