- or download this
%hash = map {$_ => undef } qw(city state country);
- or download this
( 'city' => undef, 'state' => undef, 'country' => undef )
- or download this
my %skip = map {$_ => undef } qw(city state country);
...
...
}
}
- or download this
foreach my $field (param) {
next if grep { $field eq $_ } qw(city state country);
...
...
}
}