Help for this page

Select Code to Download


  1. or download this
    foreach my $i (0 .. $#y)
    {
        $x{$y[$i]} = $z[$i];
    }
    
  2. or download this
    for my $i (0 .. $#y)
    {
        $i == 0 ? $x{$y[$i]} = 1 : $x{$y[$i]} = undef;
    }