in reply to Re^2: Importing Time::HiRes::time at run-time (and failing)
in thread Importing Time::HiRes::time at run-time (and failing)
package P; sub new { my $class = shift; my $self = {}; $self->{_time_func} = eval { require Time::HiRes } ? \&Time::HiRes::time : sub { time() }; bless $self, $class }
|
|---|