Help for this page

Select Code to Download


  1. or download this
        perl pickFromRange.pl [ count [ max | min max ] ]
        pickFromRange [ count [ max | min max ] ]
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    my @pick= pickFromRange( $count, $min, $max );
    print "@pick\n";