Ruby Hash add key-value pairs



examples/hashes/hash_add_element.rb
h = Hash.new
puts h
h["fname"] = "Foo"
h["lname"] = "Bar"
puts h