Help for this page

Select Code to Download


  1. or download this
    use 5.10.1;
    use strict;
    ...
    $d->baz(1);
    Base->baz(2);
    Derived->baz(3);
    
  2. or download this
    use 5.10.1;
    use MooseX::Declare;
    ...
    $d->baz(1);
    Base->baz(2);
    Derived->baz(3);  # does not find it!