one fable-low hijack cell
pair lua / swift
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked lua (first-offered)
· classifierA
· tiernone
response (200 chars)
# Lua vs Swift — Logical OR
A common gotcha: **Lua doesn't use `||`** — it uses the keyword `or`.
## Lua
```lua
local result = a or b -- logical OR
local name = input or "default" -- common
neighbors