New blog post!

I've been investigating out how various languages get away with not requiring semicolons.

I looked at 11 languages and found so many interesting cases I had to share!

https://terts.dev/blog/no-semicolons-needed/

#programming #roto

No Semicolons Needed | Terts Diepraam

@terts The "always use semicolons in javascript" advice is only half a solution - it prevents two statements from accidentally being concatenated to one, but it does NOT prevent the parser from breaking other statements in half.

Having the parser (or lexer) second guessing the coder is a double-edged sword that can easily lead to the coder second guessing the parser :-(

I enjoyed your write-up though!