one fable-low hijack cell
pair csharp / haskell
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked haskell (second-offered)
· classifierB
· tiernone
response (200 chars)
# `||` in C# vs Haskell
## C#
`||` is the **conditional logical OR** (short-circuiting) for `bool`:
```csharp
bool result = a || b; // b is not evaluated if a is true
if (x == null || x.Length ==
neighbors