On 11/4/06, Roberto Mello <[EMAIL PROTECTED]> wrote:
Braces on the same line as opposed to a line by itself is personal
preference. But if (foo) { do something } is butt ugly and makes it
harder to read, and should be avoided IMNSHO.
-Roberto
I think that
if (foo) { do something }
looks quite nice. For multi-line statements though,
if (foo) {
do_this;
do_that;
}
is the only way to do things.
/*
PLUG: http://plug.org, #utah on irc.freenode.net
Unsubscribe: http://plug.org/mailman/options/plug
Don't fear the penguin.
*/