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