class Hash::Entry {
  allow Hash;

  has key : string;
  has val : object;
  has next_entry : Hash::Entry;
}