one fable-low hijack cell
pair lua / ruby
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked ruby (second-offered)
· classifierB
· tiernone
response (200 chars)
Looks like you're asking about Ruby vs Lua — or maybe the `||` / `or` operator in each. Here's both:
## The `||` operator
**Ruby:**
```ruby
x = nil || "default" # => "default"
y = false || 5
neighbors