mirror of
https://github.com/AleoHQ/leo.git
synced 2025-01-02 23:04:12 +03:00
28 lines
310 B
Plaintext
28 lines
310 B
Plaintext
/*
|
|
namespace: ParseExpression
|
|
expectation: Pass
|
|
*/
|
|
|
|
1 ^ 1
|
|
|
|
2^3
|
|
|
|
1 ^ 2 ^ 3
|
|
|
|
1 & 2 ^ 3 & 4
|
|
|
|
1 ^ 2 ^ 3
|
|
|
|
1 & 2 ^ 3 & 4 ^ 5 & 6
|
|
|
|
!-x.xor(y)
|
|
x.xor(y).xor(y).xor(y)
|
|
-x.xor(y)
|
|
(-x).xor(y)
|
|
-(x.xor(y))
|
|
(-x.xor(y)).xor(y)
|
|
!x.xor(y)
|
|
(!x).xor(y)
|
|
!(x.xor(y))
|
|
(!x.xor(y)).xor(y)
|
|
(x.xor(y) ^ x.xor(y)).xor(x.xor(y) ^ x.xor(y)) |