one fable-low hijack cell
pair camel / ocaml
envelope code_haskell_alt
ordering AB
effort low
Haskell alternative operator — '{X} <|> {Y}' (Alternative class).
verdictpicked ocaml (second-offered)
· classifierB
· tiernone
response (200 chars)
```ocaml
(* <|> — the "alternative" operator, a classic in OCaml land *)
(* On options: take the first Some *)
let ( <|> ) a b =
match a with
| Some _ -> a
| None -> b
let () =
assert (Som
neighbors