> subroutine and declared it with my, doesn't the actual
> array that I'm pointing to get garbage collected after
> that subroutine ends? Won't I rapidly risk pointing to
> garbage when _init ends?
When you store a reference to a local (i.e., my) variable, the data persists beyond the original scope. See 'perldoc perlref' for more information on this.
(2)
]
