Help for this page

Select Code to Download


  1. or download this
    package MyClass;
    use Moose;
    ...
        isa      => 'Benchmark::Timer',
        default  => sub { Benchmark::Timer->new() },
    );
    
  2. or download this
    package MyClass;
    use Moo;
    
    my $timer = Benchmark::Timer->new();