]box
Is ON
⎕←{⎕←⍵}(1 2)(3 4)
1 2 3 4
┌───┬───┐
│1 2│3 4│
└───┴───┘
⍝⍝ How to get identical behavior inside and outside a dfn?
]box in the box
Forum rules
This forum is for discussing APL-related issues. If you think that the subject is off-topic, then the Chat forum is probably a better place for your thoughts !
This forum is for discussing APL-related issues. If you think that the subject is off-topic, then the Chat forum is probably a better place for your thoughts !
-
- Posts: 159
- Joined: Thu Nov 11, 2010 11:04 pm
Re: ]box in the box
Here:
]box on -fns=on-fns=on enables boxing of output within functions, as they are executing.
Was ON -fns=off
⎕←{⎕←⍵}(1 2)(3 4)
┌───┬───┐
│1 2│3 4│
└───┴───┘
┌───┬───┐
│1 2│3 4│
└───┴───┘