in reply to Re: Re: Re: Re: CGI::Application vs CGI::Builder
in thread CGI::Application vs CGI::Builder
I think the real problem is beginning with semicolons. Sure, you *can*, but it gives the (false) impression that a semicolon is a statement beginner when it's really a statement terminator.
Well, since this is a well formed block made of 3 'statements':
{ A ; B ; C }
I would say that perl uses semicolon to divide/split statements, more as a 'statement separator' than 'statement end' (i.e. neither to end nor to start statements).
I agree that putting the semicolon at the end is the more popular convention, (and for this reason my style is unconventional), but these are exactly the same block, just splitted after or before the 'statement separator':
{ A ; B ; C } { A ; B ; C }
the advantage of the latter is the vertical alignment, its disadvantage is that it is unconventional.
Domizio Demichelis
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Re: CGI::Application vs CGI::Builder
by BUU (Prior) on May 04, 2004 at 21:55 UTC |