1#!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 "# BareCalc using Calc v", Math::BigInt::Calc -> VERSION, "\n";
16
171;
18