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

Why in earth would Other want to unmarshall some variables without knowing what they're called? If it didn't know what they were called, it couldn't very well make practical use of the data contained in them.

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

Replies are listed 'Best First'.
Re^4: marshalling data
by BillKSmith (Monsignor) on Mar 12, 2013 at 20:22 UTC
    Good point! This may be exactlly what I got wrong.
    Bill