class Hamster::Hash

def get(key)

def get(key)
  entry = @trie.get(key)
  if entry
    entry.value
  end
end