one fable-low hijack cell
pair cpp / kotlin
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked cpp (first-offered)
· classifierA
· tiernone
response (200 chars)
# `^` Operator: Kotlin vs C++
The `^` symbol means different things in these languages — a common gotcha!
## C++
`^` is the **bitwise XOR** operator:
```cpp
int a = 5 ^ 3; // 6 (101 ^ 011 = 110)
neighbors