xor 84 B

1234567
  1. void main() {
  2. int a = 0;
  3. a = a ^ 2;
  4. test(a);
  5. a ^= 7;
  6. test(a);
  7. }