In regards to adding an key => value pair to an existing populated hash in Ruby, I\'m in the process of working through Apress\' Beginning Ruby and have just fi
key => value
my_hash = {:a => 5} my_hash[:key] = "value"