this post was submitted on 08 Dec 2023
623 points (96.6% liked)

Programmer Humor

32054 readers
1366 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 9 months ago (4 children)

Please don't use #2. It is how you get the goto fail bug

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

Then use golang

[–] Uriel_Copy 3 points 9 months ago (1 children)

Should you even be using goto? I was taught to avoid it like the plague

[–] [email protected] 4 points 9 months ago

Apple wrote bugged TLS code that broke using unbraced ifs with a goto, hence the name "goto fail". You don't need a goto to break this code though. All you need is a second indented line under the if

[–] [email protected] 1 points 9 months ago

10 goto 20

20 goto 10

[–] camelbeard 1 points 9 months ago (1 children)

Can you explain? 1 and 2 seem like the same logic? Are they compiled differently?

To me number 2 is just the cleanest and most easy to read. But I really need to get more used to lambda's

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

#2 is also the most insideous to update. Add another indented line to one of the conditions and the cotrol flow completely breaks while visually appearing fine.

C and a number of other languages have annoying pair of parallel syntax systems that makes it easy for people to read code one way and computers to compile it another. People read the indentation and newlines while compilers count braces and semicolons. #2 gets rid of the braces and makes control flow driven by semicolons making human visual inspection more likely to fail

[–] camelbeard 1 points 9 months ago

Thanks for the reply (not really sure why someone would downvote you for answering a question).