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