Why do some languages not use semicolons and braces?

Posted by Incognito on Stack Overflow See other posts from Stack Overflow or by Incognito
Published on 2010-05-17T10:50:42Z Indexed on 2010/05/20 13:20 UTC
Read the original article Hit count: 249

It is interesting that some languages do not use semicolons and braces, even though their predecessors had them. Personally, it makes me nervous to write code in Python because of this. Semicolons are also missing from Google's GO language, although the lexer uses a rule to insert semicolons automatically as it scans.

Why do some languages not use semicolons and braces?

© Stack Overflow or respective owner

Related posts about programming-languages

Related posts about language-design