one fable-low hijack cell
pair lua / ruby
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked ruby (second-offered)
· classifierB
· tiernone
response (200 chars)
# `^` in Ruby vs Lua
The same symbol means **completely different things** in these two languages:
## Ruby: Bitwise XOR (and boolean XOR)
```ruby
5 ^ 3 # => 6 (101 XOR 011 = 110)
true ^ false
neighbors