one fable-low hijack cell
pair cpp / lua
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked lua (second-offered)
· classifierB
· tiernone
response (200 chars)
# `^` Operator: C++ vs Lua
The `^` symbol means **completely different things** in these two languages — a classic gotcha!
## C++ — Bitwise XOR
```cpp
int a = 5 ^ 3; // 6 (101 XOR 011 = 110)
```
neighbors