one fable-low hijack cell
pair slow / wings
envelope en_slash_q
ordering AB
effort low
English with slash + question mark — '{X}/{Y}?'
verdictunclear / off-rails
· classifierUNCLEAR
· tiernone
response (200 chars)
Could you clarify what you're after? A few guesses:
**1. If you want to factor a number in APL** (prime factorization):
```apl
factors←{⍵=1:⍬ ⋄ d←⊃(0=⍵|⍨⍳⍵)/⍳⍵ ⋄ d,∇⍵÷d}
factors 60
⍝ 2 2 3 5
```
(D
neighbors