Help for this page

Select Code to Download


  1. or download this
    package CountingMetaClass;
    use Moose;
    ...
        my $class = shift;
        $class->count($class->count + 1);
    };
    
  2. or download this
    package Foo;
    use metaclass ('CountingMetaClass'); # tell it what meta you want used
    + first ...
    use Moose;