one fable-low hijack cell
pair lua / r
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked lua (first-offered)
· classifierA
· tiernone
response (200 chars)
In Lua, there's no `||` operator — Lua uses the keyword `or` instead:
```lua
-- ❌ Wrong (syntax error in Lua)
if a || b then ... end
-- ✅ Correct
if a or b then ... end
```
## Logical operators com
neighbors