# Copyright (c) 2023 Yuki Kimoto
# MIT License

class Hash::Entry {
  allow Hash;

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