one fable-low hijack cell
pair rust / stop
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked rust (first-offered)
· classifierA
· tiernone
response (200 chars)
In Rust, `^` is the **bitwise XOR** operator.
```rust
let a = 0b1010;
let b = 0b0110;
let c = a ^ b; // 0b1100 (12)
// Also works on booleans (logical XOR)
let x = true ^ false; // true
// Compound
neighbors