package mem type CellKind int const ( CellKindEmpty CellKind = iota CellKindString CellKindArray CellKindEnv CellKindOutlet CellKindForbidden ) type cell struct { kind CellKind refs int data any }