- or download this
tom@wintermute tom $ perl -c t
syntax error at t line 17, near "else"
t had compilation errors.
- or download this
if ( exists $list{$location} ) {
my $value = $list{$location};
...
else {
$list{$location} = "1";
}
- or download this
if ( exists $list{$location} ) {
my $value = $list{$location};
...
else {
$list{$location} = "1";
}
- or download this
*** 10,18 ****
$value++;
...
}
else {
$list{$location} = "1";