Counterpoint
Take this snippet of Python:
i += 1
j += 1
if i + j > 5:
success()
else:
print "An error occurred."
failure()
In C, I'd approach it like this, for the sake of vertical real-estate (while maintaining its readability):
i++; j++;
if(i + j > 5) success();
else {
printf("An error occurred.\n");
failure();
}
In this contrived example, I've only gained one line because of the additional line for the closing brace, but my point is clear: semicolons give me the flexibility to do more in less space than not being allowed to use them. A similar reformatting is possible in Python, but is discouraged. (Oh, yes, Python has semicolons.)
I feel awful every time I write a line with only four characters on it because it usually makes the code less codergenic, a word I just invented to imply that I enjoy looking at it.
Another place where you'll see this crop up is function declarations. This speaks less to semicolons and more to programmer flexibility, but take this C function:
int do(char *format, ...) { return sprintf(format, va_args); }
Since it only does one thing (it won't compile, I've left out some things), I'm comfortable putting that on one line, and the syntax encourages it and allows me to do so. This, while technically allowed in Python, is strongly discouraged (for readability; the effect one way or another is debatable):
def do(format, *args): return format % args
And, if I want to add an if statement in there, semicolons to the rescue:
int do(char *format, ...) { if(format) return sprintf(format, va_args); else return "foo"; }
or
int do(char *format, ...) { return format ? sprintf(format, va_args) : "foo"; }
We've gone beyond readability here, but again these are contrived examples. This comes up for me quite a bit in real code. Python's equivalent? Impossible -- not even semicolons will help in this case, so you're off to folding away this function:
def do(format, *args):
if format:
return format % args
else:
return "foo"
Again, all contrived examples, and I'm tempted to CW this since I know I'm the only one willing to objectively look at the glory of today's interpreted languages.