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
x = {:ca => "Canada", :us => "United States"} x[:de] = "Germany" p x