>Subroutines calls should interpolate in double-quoted strings and similar
>contexts.

>    print "Sunset today is at &sunset($date)";

>interpolates to:

>    print 'Sunset today is at '.sunset($date);

Huh?  And what if it's a built-in?  What if it's not quite a built-in,
but an import?  What if you don't *know* whether it's a built-in?

I cannot but wonder what kind of childhood abuse leads programmers
to expect that double quotes shouldn't count for squat anymore.
If you don't like 'em this much, you should quit using them.

--tom

Reply via email to