Help for this page

Select Code to Download


  1. or download this
    foreach ( $a, $b ) {
      $hash{$_} = $new;
    }
    
  2. or download this
    foreach my $item_alias ( $a, $b ) {
      $hash{$item_alias} = $new;
    }
    
  3. or download this
    $hash{$a} = $new;
    $hash{$b} = $new;