in reply to Re: The Dynamic Method Calls Strike Back
in thread The Dynamic Method Calls Strike Back

No arguments about 'no strict' being a bad idea, but it's the Principle of the Thing that's bugging me.

-- Frag.

  • Comment on Re: Re: The Dynamic Method Calls Strike Back

Replies are listed 'Best First'.
Re: Re: Re: The Dynamic Method Calls Strike Back
by runrig (Abbot) on Aug 28, 2001 at 02:36 UTC
    "no strict 'refs'" is not necessarily a bad idea, as long as you know what you're doing, and confine it to some lexical blocks. Its practically required when you dynamically create subroutines with AUTOLOAD, (where you also use goto which is usually bad too, but standard AUTOLOAD practice). Its just that even 'no strict' won't help you in the example above :-(