> On Wed, Aug 29, 2001 at 08:21:07AM +0100, Andy Wardley wrote:
> > >   <DO while Level gt 1 >
> > 
> > No, but it probably should be... and will be in the next version :-)
> 
> ...which is now available as 2.04d from the web site (see other message).

One possible concern: lt, gt, ge, and le are now reserved words, so
2.04d will break old code that uses these as variable or member names.

Another workaround to the original problem would be to use this:

    <DO while 1 < Level >
or
    <DO while (1 < Level) >

although it doesn't read as easily.

Craig


Reply via email to