Roger Espel Llima wrote:
> 
> > @{"${class}::ISA"}
> 
> Incidentally, does anyone know of a way to do this that works under
> strict?  The above requires a "no strict 'refs'" to work.

Something like this we3nt by on p5p a while ago (IIRCC):

   @{$main::{"$class\::"}->{ISA}}

but that's a lot more cryptic that

   {
      no strict 'refs' ;
      @{"${class}::ISA"} ;
   }

- Barrie

Reply via email to