http://qs1969.pair.com?node_id=131543


in reply to Re: Re: Too many modules
in thread Module breaks when declaring variables

Minor issue: the second line of your first example is not needed as it just sets those variables to have the same values that they already had.

Major issue: You might as well delete all three lines of your last example as it does nearly nothing and none of the minor things that it does do have any use that I can see. The first example allows you to make use of the declared variables further down in the file. That is what you want. You last example doesn't do that. If you used your last example then you'd get errors in the code further down in the file that made use of those variables (and if there is no code further down that makes use of those variables, then you might as well drop them from the declaration).

        - tye (but my friends call me "Tye")

Replies are listed 'Best First'.
Re: (tye)Re: Too many modules
by jryan (Vicar) on Dec 13, 2001 at 20:02 UTC
    Right, that makes sense. Although the no strict allows the statement to pass, the variables are still never declared (just used), and thus the compiler will still clunk the code with a wooden spoon.