one fable-low hijack cell
pair perl / ruby
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked ruby (second-offered)
· classifierB
· tiernone
response (200 chars)
`ruby || perl` 😄 — a few ways to read that:
## As code
In **Ruby**, `||` is logical OR with short-circuit evaluation:
```ruby
name = input || "default" # returns first truthy value
x ||= 5
neighbors