perl で何らかの機能を実行するのに必要な時間を測定したいと考えています。使っTime::HiRes
たけど時間が読めない。どうすれば簡単に達成できますか?
コードは次のとおりです。
use Time::HiRes qw (time);
my $start = time;
my_function_here ();
my $time = time - $start;
printf "Time needed for my_function_here is: $time sec\n";
sub my_function_here {
my $null = 1;
}