Re: akt availability

2020-03-29 Thread Alexey Veretennikov
Thats unfortunate, its great that you preserved it. It helped me to run GNU
APL on a small device where I wasn't able to run Emacs.

Br,
/Alexey

сб, 28 мар. 2020 г. в 20:53, Blake McBride :

> Greetings,
>
> A few years ago, David B. Lamkins created a program called 'akt' that
> makes using GNU-APL on Linux very easy.  Basically, it allows the use of
> either a regular keyboard or an APL keyboard with Linux without going
> through all sorts of OS gyrations.  I use it frequently and it works
> flawlessly.
>
> Unfortunately, for reasons unknown to me, akt was first deprecated by
> David and has now disappeared from where it used to reside - GitHub.
> Having a full copy of it myself, I decided to make it available on my own
> GitHub account for others who may be interested.
>
> David Lamkins' akt is now available at https://github.com/blakemcbride/akt
>
> Thank you.
>
> Blake McBride
>
>


Slowness when using lambda expressions

2020-03-29 Thread Elias Mårtenson
The following expression takes about 12 seconds to compute on my laptop:

*{⍺+⍵}/ ⍳100*

However, the equivalent expression without the lambda expression is
immediate (i.e. thr prompt returns before I have time to notice that it
even started calculating):

*+/ ⍳100*

What is causing the large difference in performance?

Regards,
Elias