one fable-low hijack cell
pair c / r
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
**"r || c"** can mean a few things depending on context:
## 1. Programming (Logical OR)
```c
r || c // true if r is true OR c is true
```
- Short-circuits: if `r` is truthy, `c` isn't evaluated.
#
neighbors