one fable-low hijack cell
pair cpp / haskell
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked cpp (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` (Logical OR) — Haskell vs C++
## Haskell
```haskell
(||) :: Bool -> Bool -> Bool
True || _ = True
False || x = x
-- Usage
result = (x > 5) || (y < 10)
```
- Works only on `Bool`
- Lazy by na
neighbors