> Better yet, DWIM.  If I write
> 
>   print "[EMAIL PROTECTED]";
> 
> and no array @southern exists, I probably mean I want it to print
> 
>   [EMAIL PROTECTED]
> 
> I'd say, if the variable exists, interpolate it.  If not, print it as
> it stands.

I initially was thinking this too, but there's a major problem:

   print "Your stuff is: @stuff\n";

I want this to *always* print out the _value_ of @stuff, even if it's
unititalized. Perl's already smart enough. I think getting in the habit
of writing:

   $email = '[EMAIL PROTECTED]';

Is the better thing to do.

-Nate

Reply via email to