Re: Quick and Easy scoping question

2005-08-12 Thread Frank Wiles
On Fri, 12 Aug 2005 12:04:34 -0500 Boysenberry Payne <[EMAIL PROTECTED]> wrote: > I a module written in an object orient syntax that does this: > > sub new { > > my $class = shift; > my $this = {}; > bless( $this, $class ); > $this->_init( @_ ); > > return $

Quick and Easy scoping question

2005-08-12 Thread Boysenberry Payne
I a module written in an object orient syntax that does this: sub new { my $class = shift; my $this = {}; bless( $this, $class ); $this->_init( @_ ); return $this; } Is $this considered Global (i.e. am I going to run into the scoping issues of