in reply to Re: catch die from say
in thread catch die from say
"say $mail $textecourriel;"
From perlobj: Indirect Object Syntax (emboldened text from the documentation):
Outside of the file handle case, use of this syntax is discouraged as it can confuse the Perl interpreter. ...
Also, the "The 'indirect' feature" is disabled in v5.36 (see "perl5360delta: use v5.36").
I would recommend
$mail->say($textecourriel);
as a preferred syntax.
Update: See responses for why I have striken this recommendation.
— Ken
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: catch die from say
by Corion (Patriarch) on Apr 01, 2024 at 07:23 UTC | |
Re^3: catch die from say
by ikegami (Patriarch) on Apr 01, 2024 at 13:41 UTC | |
Re^3: catch die from say
by Timka (Acolyte) on Apr 01, 2024 at 06:11 UTC |