Steven Taylor wrote: > The attempt: > j=:(<3;]) You could write j=: 3 <@:; < or maybe j=:[: < 3 , < .
> have something like
> j 4{a
You still won't be able to write it this way. The 4{a would be processed
before j was invoked. So you'd get j ( 4 { a ) .
You could write (j 4) { a .
-Dan
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm
