More importantly, they add regularity.

The only semantic difference between:
    if (expr)
        doThing1();
and:
    if (expr) {
        doThing1();
        doThing2();
    }
is an extra statement.  So why should the syntactic difference be
greater than that?

-- Tim

On Sep 10, 5:32 am, Ben Schulz <[email protected]> wrote:
> > Ben Schultz: They add clutter.
>
> I reject your premise. They don't add clutter, they add structure.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "The 
Java Posse" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/javaposse?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to