one fable-low hijack cell
pair elixir / julia
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked elixir (first-offered)
· classifierA
· tiernone
response (200 chars)
Nice — `||` works in both! 😄 Here's a quick rundown:
## The `||` operator
**Elixir**
```elixir
nil || "default" # => "default"
false || 42 # => 42
"hello" || "world" # => "hello"
```
neighbors