Re: Straw poll - naming conventions
From: Hrvoje Brozovic (a.b_at_c.de)
Date: 03/05/04
- Next message: Clay Shannon: "Re: Straw poll - naming conventions"
- Previous message: Andrew Rybenkov: "Re: TeamB, Borland, admit obvious"
- In reply to: Julian Maisano: "Re: Straw poll - naming conventions"
- Next in thread: Tom B.: "Re: Straw poll - naming conventions"
- Reply: Tom B.: "Re: Straw poll - naming conventions"
- Reply: Julian Maisano: "Re: Straw poll - naming conventions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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.
- Next message: Clay Shannon: "Re: Straw poll - naming conventions"
- Previous message: Andrew Rybenkov: "Re: TeamB, Borland, admit obvious"
- In reply to: Julian Maisano: "Re: Straw poll - naming conventions"
- Next in thread: Tom B.: "Re: Straw poll - naming conventions"
- Reply: Tom B.: "Re: Straw poll - naming conventions"
- Reply: Julian Maisano: "Re: Straw poll - naming conventions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]