summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigInt/BareCalc.pm
blob: 86522d5d63cc5d364cf3da99351768ee435c0dd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!perl

package Math::BigInt::BareCalc;

use strict;
use warnings;

our $VERSION = '1.999803';

# Package to to test Bigint's simulation of Calc

use Math::BigInt::Calc '1.9998';
our @ISA = qw(Math::BigInt::Calc);

print "# BareCalc using Calc v", Math::BigInt::Calc -> VERSION, "\n";

1;