You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments