Help for this page

Select Code to Download


  1. or download this
    if ($tally[$i]) {
        printf {$out} "%-20s %30d \n", $regex, $tally[$i] // 0 ;
    }
    
  2. or download this
    use 5.032;
    use autodie;
    ...
            printf {$out} "%-${max_length}s %3d\n", $regex, $tally[$i] // 
    +0 ;
        }
    }