This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Document string- and number-specific bitops in perlop
[perl5.git] / dist / Math-BigInt / t / req_mbfn.t
CommitLineData
990fb837
RGS
1#!/usr/bin/perl -w
2
3# check that simple requiring BigFloat and then new() works
4
5use strict;
3167abe5 6use Test::More tests => 1;
990fb837 7
3167abe5 8require Math::BigFloat; my $x = Math::BigFloat->new(1); ++$x; is ($x,2);
990fb837
RGS
9
10# all tests done