Help for this page

Select Code to Download


  1. or download this
    while ($numdisks > $loop++) {
        $string = $string ."x";
        push (@polea, $string);
    }
    
  2. or download this
    my @polea = map 'x' x $_, 1 .. $numdisks;