Howdy all.
I have the need to turn off strict refs for one line.
I want to make sure strict refs is back on afterward.
if(...) {
no strict 'refs';
...use refs here...
use strict 'refs';
}
Is that how I turn them back on or ???
(I think all 'use's get done before anything else so it would be pointless to have it
there? )
Or does the no strict 'refs' apply only within it's own block so after I'm out of that
if{} statement strict refs are back on?
Thanks
Dan
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]