- or download this
my $i=0;
while ($i<$#group) {
$hash{$group[$i]}=$group[$i+1];
$i+=2;
}
- or download this
@destination = map {$_++} @source
- or download this
.... = map { ("key$_" , "value$_") } .....
- or download this
.... = map { ("key$_" => "value$_") } .....