I know what my is in Perl. It defines a variable that exists only in the scope of the block in which it is defined. What does our do? How does it differ from my?
|
4
|
|
|||
|
|
|
|
Great question: How does In Summary: Available since Perl 5,
On the other hand,
Declaring a variable with For example, the formal, qualified name for variable |
|||
|
|
|
The perldoc has a good definition of our.
|
|||
|
|
|
|
my is used for local variables, where as our is used for global variables. More reading over Variable Scoping in Perl: the basics . |
||||
|
|
|
The PerlMonks and PerlDoc links from cartman and Olafur are a great reference - below is my crack at a summary:
Just to round it out, |
||
|
|
|
|
Coping with Scoping is a good overview of Perl scoping rules. It's old enough that The article talks about package variables and dynamic scope and how that differs from lexical variables and lexical scope. |
||
|
|
|
|
An example:
|
||
|
