one fable-low hijack cell
pair c / julia
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked c (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in Julia (vs. C)
## Julia
`||` is **short-circuit OR** — it only works with `Bool` values:
```julia
true || false # true
1 || 0 # ERROR: TypeError (non-boolean used in boolean cont
neighbors