Help for this page

Select Code to Download


  1. or download this
    sub debug{
       print @_;
    }
    
  2. or download this
    my %__privateIndexHash; #key = country read, value is allways 1
    my @CountryList;
    ...
           push @CountryList, $country;
       }
    }
    
  3. or download this
    my @CountryList;
    Build_Country_List($){
       my $country=shift;
       push @CountryList, $country unless grep { $_ eq $country} @CountryL
    +ist;
    }
    
  4. or download this
    my $total;
    sub Build_totals_shares_for_sedol_Sell_side($$$) {
    ...
        $total += $_ foreach values %Sellhash;
      }
    }