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

Programmer Humor

24849 readers
487 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
[–] [email protected] 67 points 1 year 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.

[–] [email protected] 20 points 1 year ago (7 children)

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

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (4 children)

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

[–] [email protected] 9 points 1 year ago (1 children)

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

if condition { ... }

Is invalid in typical C-style syntax

[–] [email protected] 3 points 1 year ago

Gotcha, thanks.

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