class Temple::ImmutableMap

def [](key)

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