1# -*- mode: perl; -*-
2
3package Math::BigInt::BareCalc;
4
5use strict;
6use warnings;
7
8our $VERSION = '1.999803';
9
10# Package to to test Bigint's simulation of Calc
11
12use Math::BigInt::Calc 1.9998;
13our @ISA = qw(Math::BigInt::Calc);
14
15print "# Math::BigInt::BareCalc v", $VERSION, " using",
16  " Math::BigInt::Calc v", Math::BigInt::Calc -> VERSION, "\n";
17
181;
19