one fable-low hijack cell
pair ruby / scala
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked ruby (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in Scala vs Ruby
## Scala
`||` is the **logical OR** operator for `Boolean` values, with short-circuit evaluation:
```scala
val a = true
val b = false
a || b // true — b is not evalu
neighbors