On 8/22/07, Philip A. Viton <[EMAIL PROTECTED]> wrote: > y > +----------+ > ¦year1¦year¦ > +----------+ > yy > +----------+ > ¦yearl¦year¦ > +----------+ ... > NB. but J thinks they're different > y -: yy > 0
First off, I would try to avoid using lower case y as a global, but that's not your issue. The difference is the character which follows the 'r' in y and yy. In y it's the number 1, in yy it's the lower case letter l. Thus: y =L:0 yy +---------+-------+ |1 1 1 1 0|1 1 1 1| +---------+-------+ -- Raul -- Raul ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
