Hi Louis,

]Boxing formats the result of an APL statement if there is one.

      A←(1 2)(3 4)(5 (6 7))

prints nothing, so ]boxing does not matter.


      ⎕←(1 2)(3 4)(5 (6 7))

is the same except that the value is printed as a side effect of ⎕←
Nothing to be done for ]boxing.

/// Jürgen


On 03/06/2016 01:43 AM, Louis de Forcrand wrote:
I already mentioned this is a thread about FILEIO;

      ]BOXING 2
      (1 2)(3 4)(5 (6 7))
.→--. .→--. .→------.
|1 2| |3 4| |5 .→--.|
'---' '---' |  |6 7||
            |  '---'|
            '∊------'
      ⎕←(1 2)(3 4)(5 (6 7))
 1 2  3 4   5  6 7  

Good luck,
Louis

Reply via email to