# Copyright (c) 2023 Yuki Kimoto
# MIT License

class Hash::Entry {
  version_from SPVM;

  allow Hash;

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