On Thu, Sep 29, 2011 at 5:21 PM, Christopher McIntosh <[email protected]> wrote: > I have a noun, BASE_LIBS, defined as: > > BASE_LIBS =: 'base';'ctag';'j';'jadetag';'jadecompare';'jregex';'jtask';'z'
Try: BASE_LIBS =: ;:'base ctag j jadetag jadecompare jregex jtask z' The problem is that 'j' and 'z' are characters and not lists of characters. You could also use (,'j') and (,'z') instead, in your original sentence. -- Raul ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
