Hi,
This simple perl script below produce errors. However, if I comment out #use Algorithm::Numerical::Shuffle qw /shuffle/;# as in script 2 below, the script work. So what must I do to use this shuffle module?
Thanks
#### script1 #############
## produce error ==>>
http://www.110mb.com/500.php #####
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
use Algorithm::Numerical::Shuffle qw /shuffle/;
print "Content-type: text/html\n\n";
print "hello world\n";
## script 2 no errors ################
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
#use Algorithm::Numerical::Shuffle qw /shuffle/;
print "Content-type: text/html\n\n";
print "hello world\n";