Re: [Bug-apl] Indexed assignment error for characters but not numbers

2014-05-28 Thread Blake McBride
Looks good. Thanks! On Tue, May 27, 2014 at 1:07 PM, Juergen Sauermann < juergen.sauerm...@t-online.de> wrote: > Hi Blake, > > thanks, fixed in SVN 295. > > /// Jürgen > > > > On 05/26/2014 11:01 PM, Blake McBride wrote: > >)CLEAR > CLEAR WS > ⎕IO > 1 > a←b←5 5⍴⍳25 >

[Bug-apl] Indexed assignment error for characters but not numbers

2014-05-26 Thread Blake McBride
)CLEAR CLEAR WS ⎕IO 1 a←b←5 5⍴⍳25 a[⍳5;]←b a←b←⍕a a 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 ⍴a 5 14 a[⍳5;]←b LENGTH ERROR a[⍳5;]←b ^ ^ Of course the numeric one is the correct one. Blake