in reply to Re: Referencing the locals
in thread Referencing the locals
You'll get a better understanding of this by taking a look on Variables and Scoping tutorials, and I definitely recommend this article too.
Note that this isn't an issue of scoping, and none of those links discuss symbolic references.
$ perl -le '$x=2; my $x=4; print ${x}, ${"x"}' 42
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Referencing the locals
by hrcerq (Monk) on Apr 28, 2021 at 19:31 UTC | |
by haukex (Archbishop) on Apr 28, 2021 at 19:39 UTC |