this post was submitted on 07 Apr 2024
104 points (93.3% liked)

Programmer Humor

19166 readers
766 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 

you are viewing a single comment's thread
view the rest of the comments
[–] TheAgeOfSuperboredom@lemmy.ca 12 points 5 months ago (2 children)

Yeah, semicolons are ugly anyway and they'd ruin the beautiful expression of your code.

[–] dohpaz42@lemmy.world 7 points 5 months ago (3 children)

On a more serious note, does rust suffer some of the same issues as JavaScript when it comes to omitting semicolons?

[–] marcos@lemmy.world 7 points 5 months ago (2 children)

Do not expect to find anything like Javascript craziness on other languages. Or you'll be severely disappointed.

[–] jubilationtcornpone@sh.itjust.works 4 points 5 months ago (1 children)
for (const item in items) { }

!=

for (const item of items) { }
[–] xigoi@lemmy.sdf.org 2 points 5 months ago

Still better than

for _, item in ipairs(items)
[–] FizzyOrange@programming.dev 4 points 5 months ago (1 children)

There are plenty of languages with warts at least as bad as JavaScript's. Bash, PHP, C, even relatively sane languages like Python still have huge issues like implicit variable declaration.

[–] SpaceNoodle@lemmy.world 6 points 5 months ago (1 children)

JS and PHP are by themselves in a special ring of hell.

[–] TadoTheRustacean@programming.dev 1 points 5 months ago

Bash is a bigger one. Luckily there's nushell

[–] TheAgeOfSuperboredom@lemmy.ca 4 points 5 months ago

Nope. In Rust, a semicolon denotes a statement while a lack of semicolon is an expression so you can't just omit them at will. This does lead to cool things though like if/else blocks being able to produce values if they end in an expression. But the expression type is checked so you're less likely to make a mistake. You can see an example here: https://doc.rust-lang.org/rust-by-example/flow_control/if_else.html

In JavaScript I never skip semicolons because I've seen those subtle bugs.

[–] OpenStars@startrek.website 3 points 5 months ago

POV: your project manager went in an "cleaned" it all up by removing them - your (sic) welcome! 😜