Path: csiph.com!x330-a1.tempe.blueboxinc.net!feeder1.hal-mli.net!goblin1!goblin.stu.neva.ru!feeder.news-service.com!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!talisker.lacave.net!lacave.net!not-for-mail From: 7stud -- Newsgroups: comp.lang.ruby Subject: Re: How can I do the dictionary? Date: Tue, 19 Apr 2011 13:17:02 -0500 Organization: Service de news de lacave.net Lines: 29 Message-ID: References: <4a04255fbe927618065a027462d7d301@ruby-forum.com> NNTP-Posting-Host: bristol.highgroove.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: talisker.lacave.net 1303237068 52591 65.111.164.187 (19 Apr 2011 18:17:48 GMT) X-Complaints-To: abuse@lacave.net NNTP-Posting-Date: Tue, 19 Apr 2011 18:17:48 +0000 (UTC) In-Reply-To: <4a04255fbe927618065a027462d7d301@ruby-forum.com> X-Received-From: This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway X-Mail-Count: 381866 X-Ml-Name: ruby-talk X-Rubymirror: Yes X-Ruby-Talk: Xref: x330-a1.tempe.blueboxinc.net comp.lang.ruby:3183 Siratinee Sukachai wrote in post #993714: > I am a newbie but I'm familial with C#. > I can't find any dictionary class in Ruby. > I need to do like Dictionary> > > Can I do that in Ruby? If yes, how? > Big thanks! my_hash = { 'fruits' => ['apple', 'pear'], 'cars' => ['VW', 'BMW', 'Ford'] } p my_hash['cars'] --output:-- ["VW", "BMW", "Ford"] my_hash['rocks'] = ['granite', 'quartzite'] p my_hash --output:-- {"fruits"=>["apple", "pear"], "cars"=>["VW", "BMW", "Ford"], "rocks"=>["granite", "quartzite"]} -- Posted via http://www.ruby-forum.com/.