Commit 6f336bd
authored
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)'
11 parent f9d2dee commit 6f336bd
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1089 | 1089 | | |
1090 | 1090 | | |
1091 | 1091 | | |
1092 | | - | |
| 1092 | + | |
1093 | 1093 | | |
1094 | 1094 | | |
1095 | 1095 | | |
| |||
0 commit comments