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