Re: [Bug-apl] Example workspaces from "APL An Interactive Approach"

2017-10-08 Thread enztec
i have 2 copies - but they are in my retirement ira account and i would have to pay mucho taxes if i remove them ... but i did type up the entire book - i have them on 8" floppy disks though On Sun, 8 Oct 2017 03:58:59 + (UTC) Leslie S Satenstein wrote: > I actually have a physical copy

[Bug-apl] ⎕RE merged

2017-10-08 Thread Juergen Sauermann
Hi, I have merged Elias' ⎕RE implementation into GNU APL. Thanks, Elias, for contributing it. See 'info apl' for a description and src/testcases/Quad_RE.tc for examples of how to use ⎕RE. SVN 1012. Enjoy, /// Jürgen

Re: [Bug-apl] ⎕RE merged

2017-10-08 Thread Elias Mårtenson
Thank you. There are some errors when compiling on my Arch system: g++ -DHAVE_CONFIG_H -I. -I..-Wall -I sql -Wold-style-cast -Werror -I/usr/include -I/usr/include -rdynamic -g -O2 -MT apl-Quad_RE.o -MD -MP -MF .deps/apl-Quad_RE.Tpo -c -o apl-Quad_RE.o `test -f 'Quad_RE.cc' || echo './'`Quad_

Re: [Bug-apl] ⎕RE merged

2017-10-08 Thread Elias Mårtenson
I fixed the problem by adding a static_cast(len), but I found another issue: The testcases file is missing. Regards, Elias On 9 October 2017 at 10:41, Elias Mårtenson wrote: > Thank you. > > There are some errors when compiling on my Arch system: > > g++ -DHAVE_CONFIG_H -I. -I..-Wall -I sql

Re: [Bug-apl] ⎕RE merged

2017-10-08 Thread Elias Mårtenson
I found another bug. ↓ is used to indicate that string indexes are requested, but the error message when multiple output types are requested is wrong: * "foo" ⎕RE["⊂↓"] "bar"* DOMAIN ERROR+ 'foo' ⎕RE['⊂↓']'bar' ^ ^ * )more* Multiple ⎕RE output flags: '⊂↓'. Output

[Bug-apl] Monadic form of ↓

2017-10-08 Thread Elias Mårtenson
Currently, monadic ↑ acts as if it was called dyadically with 1 as its left argument, while monadic ↓ raises a VALENCE ERROR. In almost every single case where I have used ↓, it has been in the form 1↓X. Is there a reason why the monadic form is not allowed? And if not, would it make sense to add