one fable-low hijack cell
pair elixir / medicine
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked elixir (first-offered)
· classifierA
· tiernone
response (200 chars)
In Elixir, `||` returns the first "truthy" value (anything that isn't `nil` or `false`):
```elixir
"elixir" || "medicine"
#=> "elixir"
```
Since `"elixir"` is a non-empty string (truthy), the expres
neighbors