Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use Moose;
    ...
        lazy     => 1,      # don't allocate a slot for it unless you acce
    +ss it
        default  => 42,     # and provide the default value
    );
    
  2. or download this
    package Bar;
    use Moose;
    ...
    extends 'Foo';
    
    has '+bar' => (default => 100);