Re: [Jprogramming] NuVoc page for debug

2022-04-02 Thread Henry Rich
That's pretty good.  It needs to be referred to from the NuVoc ancillary pages. It seems to be about the graphical debugger.  Some users, as I understand, use debug commands from the keyboard.  Some documentation for them would be wolcome. Henry Rich On 4/2/2022 10:24 PM, Raul Miller

Re: [Jprogramming] NuVoc page for debug

2022-04-02 Thread Raul Miller
What about https://code.jsoftware.com/wiki/Debug? Thanks, -- Raul On Sat, Apr 2, 2022 at 9:58 PM Henry Rich wrote: > > There is no page describing the debugging commands and the debugger. It > would be great if someone took this on. > > Henry Rich > > -- > This email has been checked for

[Jprogramming] NuVoc page for debug

2022-04-02 Thread Henry Rich
There is no page describing the debugging commands and the debugger.  It would be great if someone took this on. Henry Rich -- This email has been checked for viruses by AVG. https://www.avg.com -- For information about J

Re: [Jprogramming] Verb concatenation

2022-04-02 Thread 'Pascal Jasmin' via Programming
want to draw attention to a bug in the jplayground using a variation of your script

Re: [Jprogramming] Verb concatenation

2022-04-02 Thread Henry Rich
Bravo! Henry Rich On 4/2/2022 1:53 PM, Raul Miller wrote: foo0=: 3 : '0' foo1=: 3 : '1' foo2=: 3 : '2' foo3=: 3 : '3' allfoo=: foo2,foo3 allfoo=: foo1,foo2,allfoo_: allfoo foo0 , foo1 , foo2 , foo3 allfoo'' 0 1 2 3 I hope this helps, -- This email has

Re: [Jprogramming] Verb concatenation

2022-04-02 Thread Raul Miller
foo0=: 3 : '0' foo1=: 3 : '1' foo2=: 3 : '2' foo3=: 3 : '3' allfoo=: foo2,foo3 allfoo=: foo1,foo2,allfoo_: allfoo foo0 , foo1 , foo2 , foo3 allfoo'' 0 1 2 3 I hope this helps, -- Raul On Sat, Apr 2, 2022 at 1:42 PM Devon McCormick wrote: > > Hi, > I have a group of

Re: [Jprogramming] Verb concatenation

2022-04-02 Thread Hauke Rehr
How about foo0`foo1`foo2`foo3 `:0 '' ? Am 02.04.22 um 19:42 schrieb Devon McCormick: Hi, I have a group of monadic verbs for which I want the concatenated result, e.g. foo0=: 3 : '0' foo1=: 3 : '1' foo2=: 3 : '2' foo3=: 3 : '3' allfoo=: foo0,foo1,foo2,foo3 allfoo '' 0 1 2

Re: [Jprogramming] Verb concatenation

2022-04-02 Thread Henry Rich
(1) Look at m`:0 (2) v10 =. v0 , v1 , v2... v11 =. v10, v11, ... allv =. v10 , v11 Henry Rich On 4/2/2022 1:42 PM, Devon McCormick wrote: Hi, I have a group of monadic verbs for which I want the concatenated result, e.g. foo0=: 3 : '0' foo1=: 3 : '1' foo2=: 3 : '2' foo3=: 3 :

[Jprogramming] Verb concatenation

2022-04-02 Thread Devon McCormick
Hi, I have a group of monadic verbs for which I want the concatenated result, e.g. foo0=: 3 : '0' foo1=: 3 : '1' foo2=: 3 : '2' foo3=: 3 : '3' allfoo=: foo0,foo1,foo2,foo3 allfoo '' 0 1 2 3 So *allfoo* does what I want. However, my actual set of verbs is longer than this so I