xref: /openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigInt/BareCalc.pm (revision eac174f2741a08d8deb8aae59a7f778ef9b5d770)
1*eac174f2Safresh1# -*- mode: perl; -*-
2b8851fccSafresh1
3b8851fccSafresh1package Math::BigInt::BareCalc;
4b8851fccSafresh1
5b8851fccSafresh1use strict;
6b8851fccSafresh1use warnings;
7b8851fccSafresh1
89f11ffb7Safresh1our $VERSION = '1.999803';
9b8851fccSafresh1
10b8851fccSafresh1# Package to to test Bigint's simulation of Calc
11b8851fccSafresh1
12*eac174f2Safresh1use Math::BigInt::Calc 1.9998;
139f11ffb7Safresh1our @ISA = qw(Math::BigInt::Calc);
14b8851fccSafresh1
15*eac174f2Safresh1print "# Math::BigInt::BareCalc v", $VERSION, " using",
16*eac174f2Safresh1  " Math::BigInt::Calc v", Math::BigInt::Calc -> VERSION, "\n";
17b8851fccSafresh1
18b8851fccSafresh11;
19