From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112 #!perl -Tuse 5.006;use strict;use warnings;use Test::More tests => 1;use lib 'lib';BEGIN { use_ok( 'Time::Precise' ) || print "Bail out!\n";}diag( "Testing Time::Precise $Time::Precise::VERSION, Perl $], $^X" );
#!perl -T
use
5.006;
strict;
warnings;
Test::More
tests
=> 1;
lib
'lib'
;
BEGIN {
use_ok(
'Time::Precise'
) ||
print
"Bail out!\n"
}
diag(
"Testing Time::Precise $Time::Precise::VERSION, Perl $], $^X"
);