RE: perl question - unused variables

2005-06-08 Thread Ryan Frantz
;) > > -Original Message- > From: Bob Showalter [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 08, 2005 2:52 PM > To: 'Troy S'; beginners@perl.org > Subject: RE: perl question - unused variables > > Troy S wrote: >> How can i automatically detect

RE: perl question - unused variables

2005-06-08 Thread Wagner, David --- Senior Programmer Analyst --- WGO
mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 08, 2005 2:52 PM > To: 'Troy S'; beginners@perl.org > Subject: RE: perl question - unused variables > > Troy S wrote: >> How can i automatically detect unused variables in Perl? >> >> i delcrae var

RE: perl question - unused variables

2005-06-08 Thread Ryan Frantz
ssage- From: Bob Showalter [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 2:52 PM To: 'Troy S'; beginners@perl.org Subject: RE: perl question - unused variables Troy S wrote: > How can i automatically detect unused variables in Perl? > > i delcrae variables like: &g

RE: perl question - unused variables

2005-06-08 Thread Bob Showalter
Troy S wrote: > How can i automatically detect unused variables in Perl? > > i delcrae variables like: > my $abc; > > but don't use $abc within the subroutine. > > how can i get perl to autmatically tell me that $abc is not being used > (other than the declaration) Possibly use the output o

perl question - unused variables

2005-06-08 Thread Troy S
How can i automatically detect unused variables in Perl? i delcrae variables like: my $abc; but don't use $abc within the subroutine. how can i get perl to autmatically tell me that $abc is not being used (other than the declaration) evhorig -