class Temple::ImmutableHash

def [](key)

def [](key)
  @hash.each {|h| return h[key] if h.include?(key) }
  nil
end