in reply to Triggering 'strict' from within a package
In (tye)Re3: Debugger, use strict, use warnings I described how to do this.
- tye (but my friends call me "Tye")package Custom::Package; require strict; require warnings; sub import { if( $inDevelopment ) { &strict::import; &warnings::import; } } 1;
|
---|