Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 44254e7fe81a294982f1a92f659a2e2bedcd1c8b
https://github.com/Perl/perl5/commit/44254e7fe81a294982f1a92f659a2e2bedcd1c8b
Author: brian d foy <[email protected]>
Date: 2025-09-02 (Tue, 02 Sep 2025)
Changed paths:
M pod/perlop.pod
Log Message:
-----------
result of ^^ is not the last evaluated expression.
The ^^ operator can't return the last evaluated expression since it could
either be true or false, and would not indicate the success of the XOR. You can
see this by using ^^:
$ perl -E 'say q(A) ^^ q(B)'
$ perl -E 'say q(0) ^^ q(B)'
1
To unsubscribe from these emails, change your notification settings at
https://github.com/Perl/perl5/settings/notifications