xref: /openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt/t/Math/BigInt/BareCalc.pm (revision 99fd087599a8791921855f21bd7e36130f39aadc)
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