[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-apl] segmentation fault in svn 639
From: |
Kacper Gutowski |
Subject: |
Re: [Bug-apl] segmentation fault in svn 639 |
Date: |
Sat, 20 Jun 2015 13:09:05 +0200 |
On Sat, Jun 20, 2015 at 12:32 PM, Louis Chretien <address@hidden> wrote:
> I agree the error message should not be as dire as a segfault, but the basic
> intent seems dubious…
There's nothing inherently wrong with this. Argument of ⎕EX should
be a character array with rows containing identifiers (possibly padded
with spaces). For example to expunge both 'A' and 'B' at the same time
you can write:
⎕EX 2 1⍴'AB'
Now, according to ISO, ⎕EX '3 3' should result in a domain error but
it gives 0 instead.
-k