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