one fable-low hijack cell
pair c / scala
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
In Scala, `^` is the **bitwise XOR** operator, just like in Java/C:
```scala
val a = 5 // 0101
val b = 3 // 0011
val result = a ^ b // 0110 = 6
```
### Common uses
**1. Integer XOR**
```
neighbors