Help for this page

Select Code to Download


  1. or download this
    my $cnr = 0;
    while ($cnr < 1) {
    ...
            $cnr++;
        }
    }
    
  2. or download this
    my @delarray = ( 0 .. $total )
    my $cnr = 0;
    my @dlarray  = shuffle @delarray;
    ...
            $cnr++;
       }
    }