File Coverage

blib/lib/Math/Rand48.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Math::Rand48;
2             require DynaLoader;
3             require Exporter;
4 1     1   1089 use vars qw(@ISA @EXPORT $VERSION);
  1         3  
  1         151  
5             $VERSION = '1.00';
6             @ISA = qw(Exporter DynaLoader);
7             @EXPORT = qw(drand48 erand48 seed48);
8             @EXPORT_OK = qw(lrand48 nrand48 mrand48 jrand48);
9              
10             bootstrap Math::Rand48 $VERSION;
11              
12             1;
13             __END__