one fable-low hijack cell
pair c / lua
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in C vs Lua
The logical OR operator differs between these languages:
## C: `||`
```c
int x = (a || b); // evaluates to 1 (true) or 0 (false)
```
- Returns **`int`**: always `1` or `0`
- Fal
neighbors