Re: Missing gap line in output of multi dimentional array

2025-03-01 Thread Hans-Peter Sorge
Hi Jürgen, not that I read the reference  manual  for that particular definition. Thank you for pointing me to it. Conclusion: works as designed. For my idea actually a  "*N   ⎕CR  VAR*"  creating output without box chars would do it. Best Regards Hans-Peter Am 28.02.25 um 17:17 schrieb Dr

Re: Missing gap line in output of multi dimentional array

2025-02-28 Thread Dr . Jürgen Sauermann
Hi Hans-Peter, I am not sure if your observation below is an error. The relevant rule in the IBM APL2 language reference manual is this (Figure 22 on page 138): /* For Z←R, where R is a nested array:: ...  Z has LN intermediate blank lines between vertically adjacent items C and D, where: LN←0

Missing gap line in output of multi dimentional array

2025-02-17 Thread Hans-Peter Sorge
Hi, The output from x is nicely arranged: /⍝ A  2x2 array of 2x2 arrays/ : *x←2 2 ⍴(⊂2 2)⍴¨ 'asdf' 'yxcv' 'hjkl' 'uiop'**  x ***as  yx df  cv hj  ui kl  op * ≡x* 2 /⍝ The gaps between arrays: OK. /*⍕x* as  yx df  cv hj  ui kl  op / ⍝ Correct gaps:/ * ' '=⍕x* 1 0 0 1 1 0 0 1 1 0 0 1