one fable-low hijack cell
pair c / ruby
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in Ruby vs C
## Ruby
`||` is a logical OR that returns **the actual operand value**, not just true/false:
```ruby
nil || "default" # => "default"
false || 42 # => 42
"a" || "b"
neighbors