Maurice Lombardi wrote:
OR has greater priority than < and >, and "start OR i" means nothing.
Well, actually it does (bitwise `or', BP extension), so `i < start or i' is still acceptable, but the following `>' is finally wrong (boolean expression on the left, integer on the right).
Frank