Help for this page

Select Code to Download


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