in reply to Re: Nervously....How do I access the Name of a Perl variable?
in thread Nervously....How do I access the Name of a Perl variable?

Or you would just use:
warn "Your variable names and values here" if $debug;
and Perl will supply the file name and line number for you.

By toggling the $debug variable, you can control whether the program prints debugging messages or not.

Abigail