Re: Perl Hash concept.
On 3 July 2015 at 18:54, bikram behera wrote: > Hi Team, > > > Any body can explain me how to do perl hash refernce and dereference. > Create a hash: my (%hash) = ( "key" => "value" , "otherkey" => "othervalue" ); Create a reference to said hash: my $reference = \%hash; You can also make a h
Perl Hash concept.
Hi Team, Any body can explain me how to do perl hash refernce and dereference. Thanks, Bikram