Help for this page

Select Code to Download


  1. or download this
    sub bukNew ($) {
        my( $ref ) = @_;
        my @x = 0 .. $#$ref;
        @{ $ref }[ map splice( @x, rand @x, 1 ), @x ];
    }
    
  2. or download this
    sub bukNew (@) {
        my @x = 0 .. $#_;
        @_[ map splice( @x, rand @x, 1 ), @x ];
    }