in reply to Re^2: marshalling data
in thread marshalling data

Perl 5.14 actually. Perl 5.12 introduced the package Foo 1.23 syntax.

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