Help for this page

Select Code to Download


  1. or download this
    my $limit = 0;
    for $selection ( sort { rand() <=> 0.5 } @array ) {
        print "$selection\n";
        ( ++$limit < 10 ) or last;
    }
    
  2. or download this
    @output = sort { rand() <=> 0.5 } @input;
    $#output = 9; #truncate the randomly sorted copy