Hash Ruby

h = Hash.new {|hash, key| hash[key] = "Go Fish: #{key}" }
h["c"]  
h["c"].upcase!  
h["d"]  
h.keys