Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Newbie expression question

From: joel:neely:fedex at: 11-Oct-2003 21:43

Hi, Sunanda, Minor quibble below... [SunandaDH--aol--com] wrote:
> Kai: > >>if length? tlist/data > 1000 >> >> Can someone give me a pointer as to what i need to do? >> > > Try these: > > if (length? tlist/data) > 1000 > or > if 1000 <= length? tlist/data >
I think you meant if 1000 < length? tlist/data as equality isn't in the other cases. -jn-