in reply to Re: How do I tell what variables have been defined?
in thread How do I tell what variables have been defined?

I second BrowserUK's suggestion of using 'use strict;'. If you're worried about using variables that aren't defined(maybe mis-spelled?), then start doing
#!/usr/bin/perl -w use strict;
at the top of every Perl script. I always use both of those.

HTH.

Replies are listed 'Best First'.
Re: Re: Re: How do I tell what variables have been defined?
by spartacus9 (Beadle) on Oct 01, 2002 at 01:10 UTC
    Thanks everyone for all of your replies on this. I have several options now, all of which I plan to explore. I love this place!