1 | Hard References are more powerful than Typeglobs (symbolic references) and in some cases supercede them |
2 | $scalarref = \$foo; # is pointer to a scalar |
3 | $getit = $$scalarref; # is same as $getit = $foo |
4 | This is called dereferencing or going from pointer(reference) to value |
5 | $arrayref = \@array; |
6 |
$hashref = \%hash;
|