in reply to Re: Re: Re: OO Perl: Methods To Reference Hash
in thread OO Perl: Methods To Reference Hash
I see the problem now. Look here:
# My Set Method sub set_hshAgg { my $self = shift; my %hshAgg = shift; <-------- use of % $self->{hshAgg} = %hshAgg; } # Your Set Method sub set_hshAgg { my $self = shift; my $hshAgg = shift; <-------- use of $ $self->{hshAgg} = %hshAgg; }
Thanks for your reply :)
-P0w3rK!d
In Section
Seekers of Perl Wisdom