Oh, and the curly braces should start on the same line... and I like
tabs... 4 character wide... That's the One True Way :)
On this one, I STRONGLY disagree. Of the four brace styles (k&r, gnu, bsd,
whitesmith), k&r (which is what Java uses) is the most ridiculous. It makes
the code completely unreadable! By putting the opening brace next to the
control statement, you are making it part of the control statement. It is
not! The language does not dictate that a for loop or a while loop starts
with the for statement and ends with } which is precisely what:
for (..) {
stmt;
stmt;
}
makes it look like!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]