in reply to Installation headaches Module::Runtime

Have you tried installing the latest versions of Role::Tiny and Module::Runtime first?

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re: Installation headaches Module::Runtime