From: ts Date: 2004-09-05T01:40:22+09:00 Subject: Re: OK... :) question about hash and array literals >>>>> "H" == Hal Fulton writes: H> z = [1=>2, 3=>4] # ordered association This is a nice syntax, and ruby really like it :-) svg% ruby -e 'p [1=>2, 3=>4]' [{1=>2, 3=>4}] svg% Guy Decoux