On Fri, Feb 21, 2003 at 12:51:31AM +0200, Enache Adrian wrote: > BTW ( of symbolic refs) , I stumbled on this when fixing the > braces & interpolation problem: > > $ perl -le 'my $b=1; $a = "b"; print $$a' > $ > > leaving the 'my' out gets the expected behaviour. > > I rarely used symbolic references in Perl - Is this a bug or a feature ? Lexical variables do not live in the symbol table, so they cannot be accessed through symbolic references. RonaldThread Previous | Thread Next