vote up 0 vote down star

So this is a 'feature' of more modern dynamic languages(Ruby, Scala). Literature goes on about how great this is, I of course disagree.

I guess I'm just used to having semi-colons therefore find it easier to read code with them. Am I alone in this?

My point of view is semi-colons explicitly tell a developer whatever was happening before this semi colon has just ended!

Can anyone actually give me some real pro's about this

flag

75% accept rate
Already been closed once: stackoverflow.com/questions/404735/… – Jed Smith Nov 1 at 18:16
1  
I'd like to put a semicolon on this thread. – NSD Nov 1 at 18:33

closed as subjective and argumentative by Moayad Mardini, gnovice, Michael Petrotta, Ether, Greg Hewgill Nov 2 at 1:17

9 Answers

vote up 0 vote down

I really like having the semi-colon, but I don't mind languages where you can't use it. It's the ones that don't mind, that just leads to confusion. I for instance spent 2 hours trying to work out why a piece of javascript wouldn't work when on a single line, this was of course because when it was over mutliple lines, and i'd missed a semi-colon, it worked fine, the interpreter could understand it, but on a single line it didn't make sense to the interpreter.

it went something like this:

var blah = get.something;

var fn = function (meh) { document.write("sometihng here " + meh); }

if (blah == "x") { fn("xxxx"); } else if (blah == "y") { fn("yyyy"); } else if (blah == "z") { fn("zzzz"); }

it might be easy for some to work out i'm missing a semi-colon on the var fn = function(meh) { .. } but my code was a bit more complicated.

If i were required to use semi-colons and missed this, i would have got an error straight away and known how to fix the problem.

link|flag
vote up 0 vote down

We could go all the way with the readability statement. The language where each expression, statement, control structure, etc is most clearly visually is Lisp. In fact, a lot of people do go all the way. And it is true.

However, a lot more people think that's overkill. Now, languages with semi-colons at the end of each statement, a by-product of an age where lines were strictly limited in the number of columns -- because, after all, a punch card has a fixed number of columns -- made it important to know in which line the statement ended, are, in my opinion in the middle of the road. They do not grant the benefit of full clarity of Lisp, but they still pollute the code with unnecessary characters.

In fact I never ever saw an error being caught because of the semi-colon. I saw a lot of errors existing solely because of the semi-colon.

So, to me, requiring semi-colons is bound to the same fate as everything that stays on the middle of the road: roadkill.

link|flag
vote up 0 vote down

Semicolons are generally redundant for how most people read code. We read by line and by indentation. This is part of the reason why some people advocate always using braces around if-statements and for-loops — it's so easy to miss that only one statement is actually inside the control statement's body when the braces are missing, especially if the code is deceptively indented.

Likewise, when we reach the end of a line, we expect that to be the end of a statement unless it's really obvious it's not. If you somehow made a partial statement that looked complete in C, most people would probably be fooled at first glance despite the lack of a semicolon. They might even think it was a bug and try to put a semicolon there if they did notice.

In short, we can almost always infer where a semicolon is supposed to be. More importantly, so can the computer. When the computer can do something for us, that's probably something it should be doing.

link|flag
vote up 2 vote down

In the end, and net of miniscule implementation issues which are trivially solved either way, this language-syntax design decision boils down to a decision about the graphical presentation of information -- and in that field, I think most people today acknowledge the general theories and practices advocated by Edward Tufte. In this mindset, adding to your graphical presentation any decoration that carries no information is positively damaging. A good summary of these practices (in the context of web design) is here, under the suggestive title of "save the pixel"!-).

As that PDF mentions, Tufte's expression is "saving your ink" -- use as little "ink" as you can to get the information across. "If you can use one less line, one less dot, one less word, while retaining the meaning, you should". In a different context (prose writing rather than graphical design) Strunk and White offered very similar advice...:

Vigorous writing is concise. A sentence should contain no unnecessary words, a paragraph no unnecessary sentences, for the same reason that a drawing should have no unnecessary lines and a machine no unnecessary parts. This requires not that the writer make all his sentences short, or that he avoid all detail and treat his subjects only in outline, but that every word tell.

Note the explicit reference to "a drawing should have no unnecessary lines" -- well before Tufte started writing his wonderful books, back in 1918!, William Strunk was already drawing the parallel between "vigorous writing" and effective visual presentation of information.

So, once you design a language where a certain punctuation carries no information, thus making that punctuation redundant, it's definitely better to allow (or force) the removal of such punctuation. There remain many detailed design decisions to make around such issues, if you're designing your own language (should the compiler reject or at least warn against redundancies, or should that task be left to "lint"-like tools -- etc, etc), but if you agree with Strunk and Tufte you'll have to admit that, at least, allowing redundant punctuation to be omitted, by empowering coders to respect the "save your ink" principles, makes your language a little bit better.

This is not to imply any approval for languages such as Javascript that "try to guess" where your omitted semicolons go -- that's just too error-prone (in Javascript, I strongly recommend always using semicolons and using lint to ward against misuse!-).

link|flag
+1 Nice response, and for the Strunk and White quote, which I've always felt was highly relevant to software too. – Jim Ferrans Nov 2 at 5:56
vote up 2 vote down

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.

link|flag
3  
I think it's probably all about what you are used to. After switching from C-like languages to Python for a while, the braces and semicolons, which once seemed to me like natural punctuation for code, now seem like unnecessary irritating cruft. – Ben James Nov 1 at 18:19
1  
You can write the python exactly as you wrote the C - you can use semicolons to put two statements on a line, you just don't have to. And you can put the 1 line if clause on the same line as the statement just like in C. You can write the last function in one in Python too: return format % args if format else "foo" – thrope Nov 1 at 18:59
2  
def do3(format, *args): return format % args if format else "foo" – thrope Nov 1 at 19:02
This doesn't show the different between required semicolons and optional semicolons. Languages like Ruby, Python and Haskell still allow you do use semicolons when you want — they just don't require you to use them when they can be easily inferred. – Chuck Nov 1 at 19:48
I feel awful every time I look at a line of C code with as much crammed into it as possible by abuse of indentation and inline semicolons. You seem to not hold readability in high regard, judging by the use of quotes, but most people out there disagree; and, since most often code is written in a team, I suspect your viewpoint is even less popular on the whole. – Pavel Minaev Nov 1 at 20:32
show 1 more comment
vote up 0 vote down

The semicolons make the code easier to read because you're accustomed to them. If you're accustomed to a language that doesn't use them then they're just so much extra noise.

The main benefit of semi-colons is to let the parser know when a statement has terminated - modern style is not to have huge long statements and screens now have resolutions to accommodate them comfortably. Hence they're less needed than previously. Personally I don't mind either way so long as it's consistent (think javascript for a bad example for that).

link|flag
vote up 16 vote down

I like poetry mode

Almost all statements fit on a line, so you end up adding the ; 99% of the time for no purpose. What's the benefit of adding more characters to a program, just to make the language easier to parse?

Scala managed.

Ruby managed.

Python managed.

After you work without them for a while you will find yourself asking the opposite question...

I don't think the ; was ever intended to make the code easier to read, I think they initially existed for two reasons.

  1. Very early languages had unreasonably strict input requirements. Remember that C dates from the early 1970's, and set the style for the next 30 years. If you put yourself in dmr's position, he wanted input flexibility because of the bad experience with totally restrictive languages like Fortran, Basic, and Cobol. We still want input flexibility, but we have more sophisticated ways of getting it now.

  2. When C set that style, memory and processing time was unbelievably limited compared to now. Where today we do 3 billion cycles per second, back then they rarely did more than 1 million and often a lot less, so a factor of 3,000 slower, with similarly smaller memories. (Yah, the original C compiler worked fine in about 32K bytes, I hear.) In that environment, and prior to parser generators, adding logic for programmer convenience (and in a relatively unimportant area like input formatting) wasn't high on anyone's priority list.

link|flag
+1. Totally agree that if you worked more with these languages you'd feel the opposite way. – Ben James Nov 1 at 18:13
Since Python's style guide sets a strong expectation that programmers should wrap at column 80, it's a far cry from 99% of statements that fit on a line. And dropping \ on my line (wait, when is it required again? Let me consult the docs) to maintain that style is painful. However, writing Python beyond column 80 feels just as wrong. I think there's something to be said for not getting in a programmer's way when he's in his flow. – Jed Smith Nov 1 at 18:14
Also, your argument comes from one-statement-per-line, as well. – Jed Smith Nov 1 at 18:18
If it is so difficult for you to remember the newline-continuation rules for python, pray tell which IDE/editor are you using and why is it not telling you that your syntax is incorrect (so that you can correct it and hopefully remember). You are not using cat for writing your code now, do you? – shylent Nov 1 at 18:19
I do agree that Python is kind of a special case, not because it's bad, but because there is A Python Way that is unique to Python. In Ruby, the parser is remarkably good at figuring out if you need another line. I have never used a backslash at the end of a line in Ruby. – DigitalRoss Nov 1 at 20:34
vote up 4 vote down

In my opinion it is a misfeature of Scala not to require semicolons. It forces me to to format the code in a certain way, and it feels less robust, though I didn't yet have any obscure errors caused by inferred semicolons.

For example, I'd like to put the opening brace on the next line like I do in Java, but this is not possible.

link|flag
Which style of blocks, of course, goes against the official Java style. See java.sun.com/docs/codeconv/…. – Daniel Nov 1 at 20:07
Yes, I know. But that doesn't work well when the part before the { doesn't fit on one line. – starblue Nov 1 at 20:56
1  
When does Scala not work properly with the opening brace on the next line? It seems to work fine, as far as I can see. – Lachlan Nov 2 at 3:21
vote up 0 vote down

I think it's not only better to read but easier to parse as well. You could for example in a first instance split the source-code by the terminating semicolon to perform a simple but effective syntax check.

Don't know whether this should be a real argument, but I think semicolon at the end of each instruction makes constructing a compiler a lot easier

link|flag
In what way is a semi-colon token different than a newline token? – Daniel Nov 1 at 20:04
yes and no. In a way, normally you don't type ;; But it occurs quite a lot to have 2 subsequent \n for legibility. In fact ;; does the same thing: nothing. But personally, I think it's better to have different characters for separation of instructions and for separation of code to have it more legible. – Atmocreations Nov 2 at 13:17
@Daniel The two tokens are not different, but the parsing rules for them are different. A newline in a language like C,Java is white-space. A newline in Scala is not always white-space. – HRJ Nov 2 at 15:44

Not the answer you're looking for? Browse other questions tagged or ask your own question.