Re: Straw poll - naming conventions

From: Hrvoje Brozovic (a.b_at_c.de)
Date: 03/05/04


Date: Fri, 5 Mar 2004 15:03:54 +0100


"Julian Maisano" wrote in message
> btw:
>
> if Condition
> then begin
> (only one line here? I write the "ifs" this way though.)
> end
> else begin
>
> end;
>

I do same as in C
if condition then begin
end else begin
end;

if (condition) {
} else {
}

then without begin is asking for bugs.