Aug 212010
A simple hash in Perl
Answer:
Hash is a dictionary like data structure in Perl. It allows you to direct access to a particular element inside a hash.
Example:
use strict;
use warnings;
my %hash = (
"a" => "1",
"b" => "2",
);
print $hash{"b"}; # print "2"