14 lines
317 B
Perl
14 lines
317 B
Perl
#!perl
|
|
|
|
use strict; # restrict unsafe constructs
|
|
use warnings; # enable optional warnings
|
|
|
|
use Test::More tests => 2;
|
|
|
|
BEGIN {
|
|
use_ok('Math::BigInt::LTM');
|
|
use_ok('Math::BigInt'); # Math::BigInt is required for the tests
|
|
};
|
|
|
|
diag "Math::BigInt VERSION=$Math::BigInt::VERSION\n";
|