one fable-low hijack cell
pair c / elixir
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in Elixir vs. C
## Elixir
`||` is a **logical OR** that works with *any* values (truthy/falsy):
```elixir
nil || "default" # => "default"
false || 42 # => 42
"hello" || "world"
neighbors