Help for this page

Select Code to Download


  1. or download this
    sub rand_elt { $_[rand @_] }
    
  2. or download this
    sub rand_elt {
        my @keys = @_;
    ...
        my $random_index = int( rand($num_keys) );
        return $keys[$random_index];
    }