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

Programmer Humor

19572 readers
1661 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
[–] GissaMittJobb@lemmy.ml 68 points 9 months 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 9 months 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 9 months ago* (last edited 9 months ago) (4 children)

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

[–] noli@programming.dev 9 points 9 months 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 9 months ago

Gotcha, thanks.

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