in reply to Re^2: use Strict: a rigorous way to break my command line variables?
in thread use Strict: a rigorous way to break my command line variables?

I assumed that the OP had not included all of the code necessary to generate the error. Add more code that loads something that loads the other one. Then you'll get the warning.

Also try use Strict; then try doing something that strict is not supposed to allow. It will be allowed. It should not be.

  • Comment on Re^3: use Strict: a rigorous way to break my command line variables?
  • Download Code

Replies are listed 'Best First'.
Re^4: use Strict: a rigorous way to break my command line variables?
by rodion (Chaplain) on Aug 09, 2006 at 03:13 UTC
    Also try use Strict; then try doing something that strict is not supposed to allow. It will be allowed. It should not be.

    Confirmed. As you indicate, while "use Strict;" causes neither a warning nor an error, it does nothing to protect you from the things that "use strict;" does.