- or download this
my ($temp) = [121, 122, 123, 124, 125, etc...] - or download this
foreach $id (@$temp) {
# do things with $id
}
- or download this
@hash{@$temp}=@$t;
foreach $id (keys %hash) {
# do things with $id
}
- or download this
if ($hash{120}) {
# id 120 exists
}