Help for this page

Select Code to Download


  1. or download this
    use Benchmark;
    
    ...
        quoted    => sub { eval q{ 'main'->new } },
        colons    => sub { eval q{ main::->new } },
    });
    
  2. or download this
    use Benchmark;
    
    ...
        quoted    => sub { 'main'->new },
        colons    => sub { main::->new },
    });