one fable-low hijack cell
pair haskell / julia
envelope code_haskell_alt
ordering BA
effort low
Haskell alternative operator — '{X} <|> {Y}' (Alternative class).
verdictpicked julia (second-offered)
· classifierB
· tiernone
response (200 chars)
In Haskell, `<|>` is the `Alternative` typeclass operator — and since `String` is `[Char]`, the list instance applies:
```haskell
ghci> "julia" <|> "haskell"
"juliahaskell"
```
For lists, `<|>` is j
neighbors