The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
12345678910 #!/usr/bin/env perluse strict;use warnings;use Test::More tests => 1;require_ok( 'Module::Lazy' ) or print "Bail out! Failed to load Module::Lazy";diag( "Testing Module::Lazy $Module::Lazy::VERSION, Perl $], $^X" );
#!/usr/bin/env perl
use
strict;
warnings;
Test::More
tests
=> 1;
require_ok(
'Module::Lazy'
)
or
print
"Bail out! Failed to load Module::Lazy"
;
diag(
"Testing Module::Lazy $Module::Lazy::VERSION, Perl $], $^X"
);