one fable-low hijack cell
pair csharp / lua
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked csharp (first-offered)
· classifierA
· tiernone
response (200 chars)
# Logical OR: Lua vs C#
## Lua — `or`
```lua
local result = a or b
```
- Returns the **first truthy value** (not just `true`/`false`)
- Only `nil` and `false` are falsy (0 and `""` are truthy!)
- C
neighbors