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


in reply to Re^2: A different OO approach
in thread A different OO approach

++ That is very nice. I didn't realise that you could use my and \() like that. Learn something new every day!

The only pain is that you have to remember to do:

my @A = \my %Foo;

not

my @A = \my (%Foo);

... which could lead to some nasty buggettes if you're not careful.