in reply to Smart matching is experimental/depreciated in 5.18 - recommendations?

Here's a few roads you could go down...

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re: Smart matching is experimental/depreciated in 5.18 - recommendations?