one fable-low hijack cell
pair c / scala
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` Operator: Scala vs C
## In Scala
`||` is the **logical OR** operator, working on `Boolean` values:
```scala
val a = true
val b = false
val result = a || b // true
// Short-circuit evaluati
neighbors