in reply to Re: Problem with Class::Accessor::Faster
in thread Problem with Class::Accessor::Faster

I knew that I heard this before:

...still further, and blows both Class::Accessor::Fast and Class::Accessor::Faster out of the water.

Do you mean like this: http://img.geocaching.com/user/ac12d897-6d3c-41de-8696-c88fcb516acc.jpg?rnd=0.7322909 ?

;-)

McA

  • Comment on Re^2: [OT] Problem with Class::Accessor::Faster

Replies are listed 'Best First'.
Re^3: [OT] Problem with Class::Accessor::Faster
by tobyink (Canon) on Jul 30, 2013 at 08:30 UTC

    Like this!

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name