package Book::LightSub; use strict; use Benchmark; sub bar { }; timethese(1_000_000, { method => sub { Book::LightSub->bar() }, function => sub { Book::LightSub::bar('Book::LightSub');}, });