in reply to Re: Re: VI VI VI - the number of the beast
in thread VI VI VI - the number of the beast
And strict should have been inherited from the calling script.I don't know if you meant that seriously... Apologies if this post is unnecessary.
strict is a lexical pragma, which means that affects only the rest of the enclosing scope, either block or file. So, use strict in the main script will not affect loaded modules, and vice versa.
Imagine if it didn't work that way... after putting use strict in your script, you wouldn't be able to use any modules which weren't strict-safe!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: VI VI VI - the number of the beast
by jepri (Parson) on May 05, 2001 at 20:21 UTC |