# File lib/thor/ordered_hash.rb, line 56
    def +(other)
      new = clone
      other.each do |key, value|
        new[key] = value unless self[key]
      end
      new
    end