this post was submitted on 02 Feb 2024
295 points (96.8% liked)

Programmer Humor

26979 readers
1510 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 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] GissaMittJobb@lemmy.ml 68 points 2 years ago (11 children)

Having an asterisk both be the type indicator and the dereference operator is one of the great programming language design blunders of our time, along with allowing nulls for any type in so many languages.

[–] darkpanda@lemmy.ca 20 points 2 years ago (7 children)

I also sometimes wish that the syntax in if statements was inverted, where () was optional and {} was required.

[–] clay_pidgin@sh.itjust.works 3 points 2 years ago* (last edited 2 years ago) (4 children)

Can you give me an example? I'm not sure I follow. Might be language specific?

[–] noli@programming.dev 9 points 2 years ago (1 children)

if(condition) statement; Is valid in typical C-style syntax.

if condition { ... }

Is invalid in typical C-style syntax

[–] clay_pidgin@sh.itjust.works 3 points 2 years ago

Gotcha, thanks.

load more comments (2 replies)
load more comments (4 replies)
load more comments (7 replies)