in reply to Re: Learning to *really* love references
in thread Learning to *really* love references

Until you want to do fancy things. What if you have an object that contains a hash or array ref? Ie...
$this = { _hashRef => {}, _arrayRef => [], };

Then you are stuck doing....
$x = ${$this->{'_hashRef'}}->{'blowMeDown'} @x = reverse @{$this->{'_arrayRef'}};

And that's one to grow on.