Is it possible to insert string in hash table as value in perl?

my %hash;
my $key = q{the_key};
my $value = q{string};
$hash{$key} = $value;

If that doesn't help, you have to be MUCH more specific in your question
 
Back
Top