#! /usr/local/bin/perl -w -I/usr/local/lib/perl5 package Math::TrulyRandom; require Exporter; require DynaLoader; @ISA = qw(Exporter DynaLoader); # Items to export into callers namespace by default @EXPORT = qw(truly_random_value); # Other items we are prepared to export if requested @EXPORT_OK = qw(); bootstrap Math::TrulyRandom; 1;