Need some clarification. When I use the "Use strict;" it says
I need to declare all my variables with "my".
Doesnt "my" restrict my variables to a local area or subroutine
so they cant be used later?? I would then have to use "local"
variable such as "local $var;" to make a variable global under
the "use strict;" rules??? Can I get rid of the "use strict"
and use the "use warnings" instead?? This way I wont have to
declare all my variables with "my".
Please advise.