one fable-low hijack cell
pair cpp / r
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked r (second-offered)
· classifierB
· tiernone
response (200 chars)
# `||` in C++ vs R
## C++
`||` is the **logical OR** operator for scalar boolean values:
```cpp
bool a = true, b = false;
if (a || b) {
// true — short-circuits: b is not evaluated if a is true
neighbors