Help for this page

Select Code to Download


  1. or download this
    perl -MList::Util=shuffle -le 'print join $/, shuffle 1 .. 10'
    
  2. or download this
    sub bag_draw {
      my $bag = shift;
      return splice(@$bag, rand(@$bag), 1);
    }