itshardtogetone wrote: > Hi, > My website is hosted in 110mb.com and they do not have this module installed > Algorithm::Numerical::Shuffle qw /shuffle/; > So what can I do to use that module. > Thanks
You could try use List::Util qw/shuffle/; which does pretty much the same thing, except that it doesn't have the option of shuffling an array in-place. List::Util is a standard module and you should already have it installed. HTH, Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/