> 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.
That's a good point. > Another workaround to the original problem would be to use this: > > <DO while 1 < Level > > or > <DO while (1 < Level) > I think the real answe is that ">" is too simple to be used as a closing delimiter. ePerl had this same problem, and they had to change to a 2 character delimiter to make parsing reasonable. - Perrin
