one fable-low hijack cell
pair cat / individual
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked cat (first-offered)
· classifierA
· tiernone
response (200 chars)
In SQL (and some other languages), `||` is the **string concatenation operator**, so:
```sql
'cat' || 'individual'
```
evaluates to:
```
'catindividual'
```
A few notes:
- This works in **PostgreS
neighbors