http://www.perlmonks.org?node_id=350802


in reply to Re: Re: Re: Re: correct usage of class attributes
in thread correct usage of class attributes

Simple: $self->{friends} = ['John', 'Marie'];, or to add something to that list: push(@{$self->{friends}}, 'Jane');.

Same story for hashes: $self->{pets}->{dogs} = 'mike'

You may want to have a look at the tutorials on references and data structures in the perldocs (since the site is down, I can't link you now).

Hope this helps, -gjb-