4 lines
87 B
Perl
4 lines
87 B
Perl
|
%hash = (that => this);
|
||
|
$hashreference = \%hash;
|
||
|
|
||
|
print "$$hashreference{that}\n";
|