in reply to Re^2: Question about UNIVERSAL::can
in thread Question about UNIVERSAL::can

I'm not sure the UNIVERSAL documentation is the right place. Maybe perlootut?

p5p is responsible for all the documentation that comes with Perl. See perlhack and perlrepository for information about contributing to Perl.

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