http://qs321.pair.com?node_id=1034779


in reply to Re^2: Why upgrade perl?
in thread Why upgrade perl?

use v5.12; is less typing than use v5.10; use strict; though.

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