one fable-low hijack cell
pair c / kotlin
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked kotlin (second-offered)
· classifierB
· tiernone
response (200 chars)
In **C**, `^` is the bitwise XOR operator:
```c
int result = a ^ b; // bitwise XOR
```
In **Kotlin**, `^` is **not** an operator. Kotlin uses named infix functions for bitwise operations instead:
neighbors