in reply to Managing modules of various versions

Go and read Santa has Dependencies Too!

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re: Managing modules of various versions