Are conjunctions unassignable?
Posted: Thu May 14, 2020 1:58 pm
opp←{⍺ ⍺⍺ ⍵⍵ ⍵}
tfuu←opp
SYNTAX ERROR
tfuu←opp
∧
⍝ How do I assign opp?
tfuu←opp
SYNTAX ERROR
tfuu←opp
∧
⍝ How do I assign opp?
The tool of thought for expert programming
https://forums.gos.dyalog.com/
rank←⍤
SYNTAX ERROR
rank←⍤
∧
but not reassigned as Randy discoveredRoger|Dyalog wrote:... a dyadic d-operator may be named using ←. ...
Randy wrote:... tfuu←opp ...
)cleareither thither ↑ or thence ↓
clear ws
opp←{⍺←⊢ ⋄ (⍺ ⍺⍺ ⍵)⍵⍵ ⍵}
)ns s
#.s
s.op←opp
SYNTAX ERROR
s.op←opp
∧
)cs sbut you can call it directly with its fully qualified name
#.s
op←#.opp
SYNTAX ERROR
op←#.opp
^
2 + #.opp × 3or you can create a cover that does that for you
15
op←{⍺←⊢ ⋄ ⍺ ⍺⍺ #.opp ⍵⍵ ⍵}
2 + op × 3
15