in reply to
Implicit assignment to $_
$_ = ("Test A" or "Test B"); print;
[download]
package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
Comment on
Re: Implicit assignment to $_
Download
Code
In Section
Seekers of Perl Wisdom