Hi Tom, T> on arithmetic: T> left to right precedence sparingly use parens they slow down
T> on optimization: when possible put the value first T> i: -1 + i will be minimally quicker than i: i - 1 I have to disagree a bit here. Tom is correct of course, but the hit isn't big enough to worry about in most cases; write for clarity first. If you profile something, and find out that it makes a significant (and important) difference, by all means optimize and comment accordingly. -- Gregg -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
