Help for this page

Select Code to Download


  1. or download this
    $hash{$italian}[1] = $french;
  2. or download this
    # Italian -> Spanish input file with 1 & 3
    uno = uno 
    ...
              due => [ undef, 'deux' ],
              tre => [ 'tres','trois' ],
    );
    
  3. or download this
    for my $key (keys %hash){
      if( $hash{$key}[0] and $hash{$key}[1] ){  # both are present
    ...
        print $out1 "$key => ", join( ' , ', @{$hash{$key}}), "\n";
      }
    }