one fable-low hijack cell
pair python / raku
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in Raku vs Python
## Raku
Raku has an actual `||` operator (logical OR, returns the first truthy value):
```raku
my $x = 0 || "default"; # "default"
my $y = 5 || 10; # 5
# Raku a
neighbors