Help for this page

Select Code to Download


  1. or download this
    (UNTESTED)
    
    ...
      my( $section, $item, $count ) = @$_;
      printf "%5d %7s %7s\n", $count, $section, $item;
    }
    
  2. or download this
    (UNTESTED)
    
    ...
    {
      printf "%5d %7s %7s\n", @{$_}{qw( count section item )};
    }