|
|
| XP is just a number | |
| PerlMonks |
Re^3: Deletes All Records not just oneby tobyink (Prior) |
| on Feb 16, 2013 at 13:42 UTC ( #1019039=note: print w/ replies, xml ) | Need Help?? |
|
Try:
You're currently printing out the variable $_ which isn't being defined by any of the code you posted (but is being defined somewhere else to point to an object of some kind).
package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||