On Fri, May 13, 2005 at 01:19:07PM -0400, Peter Jay Salzman wrote:
>
> if(foo)
> { doSomething();
> }
>
> which is heretical. ;)
Heh. Yeah, yuck. I'll do this for one-liners, sometimes, though:
if (foo) { do_something(); }
I think I mostly do that in PHP, though, where you end up mashing HTML and
code together a lot.
-bill!