one fable-low hijack cell
pair haskell / ruby
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 Ruby
## Haskell
```haskell
(||) :: Bool -> Bool -> Bool
True || _ = True
False || x = x
```
- Strictly typed: works **only on `Bool`**
- Lazy in the second argument: `True || un
neighbors