one fable-low hijack cell
pair haskell / r
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked haskell (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in Haskell vs R
## Haskell
```haskell
-- Logical OR for Bool values
True || False -- True
(||) :: Bool -> Bool -> Bool
```
- Works only on `Bool`
- **Lazy** in the second argument: `True ||
neighbors