Help for this page

Select Code to Download


  1. or download this
    my @array = @{ $key };
    print join ",", @array;
    
  2. or download this
    my @array = @{ $reverse_translation{key} };
    print join ",", @array;
    
  3. or download this
    my $array = $reverse_translation{key};
    print join ",", @$array;
    
  4. or download this
    foreach my $key (keys %translation) {
       print("$key: ");
       print(join(",", @{ $translation{$key} }));
       print("\n");
    }