Next | Tricks of the Wizards | 17 |
*bar = \$foo;
Aliasing is different from assigning a reference:
$bar = \$foo;
\$foo constructs a new SV with a reference value
The reference is installed into the symbol table
Next | Copyright © 2003 M. J. Dominus |