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 / require.t
CommitLineData
61f5c3f5
T
1#!/usr/bin/perl -w
2
990fb837
RGS
3# check that simple requiring BigInt works
4
61f5c3f5 5use strict;
3167abe5 6use Test::More tests => 1;
61f5c3f5 7
8f675a64 8my ($x);
61f5c3f5
T
9
10require Math::BigInt; $x = Math::BigInt->new(1); ++$x;
11
3167abe5 12is ($x,2);
61f5c3f5
T
13
14# all tests done
15