Help for this page

Select Code to Download


  1. or download this
    local our %linked_counts_by_abbr;
    
    ...
            $linked_counts_by_abbr{$abbr} += $linked_count;
        }
    })}x;
    
  2. or download this
    use XML::LibXML qw( );
    
    ...
        my $linked_count = $usage_node->getAttribute('LinkedCount');
        $linked_counts_by_abbr{$abbr} += $linked_count;
    }