From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011 #test that the module is loaded properlyuse strict;use warnings;use Test::More 0.88;plan tests => 1;my $package = 'Algorithm::AM';use_ok($package);__END__
#test that the module is loaded properly
use
strict;
warnings;
Test::More 0.88;
plan
tests
=> 1;
my
$package
=
'Algorithm::AM'
;
use_ok(
);
__END__