The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#!/usr/bin/perl
use 5.006;
use strict;
no warnings 'syntax';
use Test::More 0.88;
our $r = eval "require Test::NoWarnings; 1";
BEGIN {
use_ok ('Algorithm::Numerical::Sample') or
BAIL_OUT ("Loading of 'Algorithm::Numerical::Sample' failed");
}
ok defined $Algorithm::Numerical::Sample::VERSION, "VERSION is set";
Test::NoWarnings::had_no_warnings () if $r;
done_testing;