Tagged Questions

6
votes
2answers
152 views

When/why did Lisps start using semicolons for comments?

What is the history of the semicolon being used for comments in Lisp and its dialects? A guy in our group thought Clojure's use of the semicolon was an in-your-face to Java & Co. at first. I ...
5
votes
6answers
218 views

PHP, C++, etc. syntax explanation

Why is it that in most programming languages it is required to have a semicolon after statements but not after things like if elseif and else. Do the compilers all look out for newlines? If that's ...
1
vote
10answers
832 views

What are the trade-offs between languages that terminate statements with semicolons and those that don't? [closed]

Are there any benefits to languages that terminate statements with a semicolon (C, Perl, etc.) compared with those that don't (Python, Ruby, etc.), or vice versa? (Note to late-comers: the original ...