From Code to Community: Sponsoring The Perl and Raku Conference 2025 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__