I am practicing my OOP in Perl, and decided I would try to create a Circly Linked List. Each node would contain a name, an id number, and a reference to the next node. I have done this several times in C++. How is it best accomplished in Perl? Would this simply be a hash of arrays or can it be built cheaper than that?