The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#test that the module is loaded properly
use strict;
use Test::More 0.88;
plan tests => 1;
my $package = 'Algorithm::AM';
use_ok($package);
__END__