Hi, S02 says: our $a; say $::("a"); # works my $a; say $::("a"); # dies, you should use: my $a; say $::("MY::a"); # works How can I use symbolic dereferentiation to get $?SELF, $?CLASS, ::?CLASS, %MY::, etc.? say $::('$?SELF'); # does this work? say $::('MY::$?SELF'); # or this? Also, is $::! valid syntax? (Or am I required to write this as $::("!")?) --Ingo -- Linux, the choice of a GNU | self-reference, n. - See self-reference generation on a dual AMD | Athlon! |
- Symbolic dereferentiation of magical variables Ingo Blechschmidt
- Re: Symbolic dereferentiation of magical variables Larry Wall
- Re: Symbolic dereferentiation of magical variab... Ingo Blechschmidt