one fable-low hijack cell
pair lua / rust
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked lua (first-offered)
· classifierA
· tiernone
response (200 chars)
The `^` operator means **different things** in these two languages:
## Rust: Bitwise XOR
```rust
let a = 5 ^ 3; // 0b101 ^ 0b011 = 0b110 → 6
let b = true ^ false; // true (also works on bools)
`
neighbors