Re: Straw poll - naming conventions

From: Andrew Rybenkov (arybenkov_at_hotmail.com)
Date: 03/05/04


Date: Fri, 5 Mar 2004 16:14:28 +0300


> if Condition
> then begin
> (only one line here? I write the "ifs" this way though.)
> end
> else begin
>
> end;

mine ifs are:

if ... then begin
  end
else
if ... then begin
  end
...
else
if ... then begin
  end;

I hate Borland's way to write else clause.

--
Andrew Rybenkov.


Relevant Pages

  • Re: Straw poll - naming conventions
    ... > mine ifs are: ... > I hate Borland's way to write else clause. ... All my "begins" start on a new line for universal consistency. ...
    (borland.public.delphi.non-technical)
  • Re: IF statement in SQL?
    ... Does IFs only work with variables in T-SQL? ... Thanks for the response and the where clause. ... Hugo Kornelis wrote: ... >WHERE db1.dbo.Accounts.ACCT_ID NOT IN (Limitors) ...
    (microsoft.public.sqlserver.mseq)