one fable-low hijack cell
pair c / lua
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked lua (second-offered)
· classifierB
· tiernone
response (200 chars)
# `||` em C vs `or` em Lua
## C — usa `||`
```c
if (x > 0 || y > 0) {
printf("pelo menos um é positivo\n");
}
int result = a || b; // retorna 0 ou 1
```
- Em C, `0` é falso e qualquer outro val
neighbors