Jeff said:
Quote:
I hate K&R Bracketing


So I'm assuming that when coding in Delphi, you use:

Code:

if (x > y) then
begin
statement1;
statement2;
end;



Whereas I (preferring K&R) would use:
Code:

if (x > y) then begin
statement1;
statement2;
end;