in reply to Re: Re: Re: Perl Programming guidlines/rules
in thread Perl Programming guidelines/rules

Not really. "Global variable" means something specific in Perl: a variable like $SomePackagage::Foo or just $Foo that is declared without "my". They are global because any other package can see them and change them. Lexical (my) variables are not visible outside of their current scope. It's a significant difference.
  • Comment on Re: Re: Re: Re: Perl Programming guidlines/rules