1 |
One of Perl's "problems" (also its strength if you are knowledgeable) is that one often needs to understand implementation issues to use effectively
|
2 |
Every package has a symbol table (i.e. a list of used symbols) called :: so that main symbol table is
|
3 |
%main:: and variable $var in main has symbol table entry $main::{'var'}
|
4 |
*var is equivalent to $main::{'var'}
|
5 |
The symbol $original exists, we can set
|
6 |
*var = *original; # and then $var is another 'name' for $original and @var is another name for @original, etc.
-
That is, $var @var %var have same symbol table entry but will have different hard references
|