On Fri, Feb 21, 2003 at 10:01:15AM +0100, A. Bergman wrote: > > On fredag, feb 21, 2003, at 00:05 Europe/Stockholm, Ronald J Kimball > wrote: > > > > >Lexical variables do not live in the symbol table, so they cannot be > >accessed through symbolic references. > > Whilst it true that they do not live in the symbol table, I doubt that > is the reason they can't be accessed through symbolic references since > perl wouldn't have much trouble looking up a lexical by name. perldoc perlref: Only package variables (globals, even if localized) are visible to symbolic references. Lexical variables (declared with my()) aren't in a symbol table, and thus are invisible to this mechanism. RonaldThread Previous | Thread Next