Get key value pair through hash reference : Hash Reference « Hash « Perl
- Perl
- Hash
- Hash Reference
Get key value pair through hash reference
%hash = (that => this);
$hashreference = \%hash;
print "$$hashreference{that}\n";
Related examples in the same category