Dominic Son wrote: > Hi. There's got to be an easy way to do this. > > I simply want multiple iteams (etc, price, quantity, and name) appended > to a key.. > > There's got to be a simple way (...right?) Uh... Wouldn't a hash of hashes do the trick? For example, my_hash[:key][:price] = 1.99 my_hash[:key][:quantity] = 5 ... or my_hash[:key] = { :price => 1.99, :quantity => 5 } or whatever the syntax is. -- Posted via http://www.ruby-forum.com/.