View Single Post
  #4  
Old 07-30-2008, 09:55 AM
Theeper
Discordant
 
Join Date: May 2004
Posts: 290
Default

In PERL, "my" variables are private in scope. They're not the same as "local" variables, but they function as you'd expect a local variable would in this context. Not using "my" makes a variable global.
Reply With Quote