this post was submitted on 08 Dec 2023
618 points (96.4% liked)
Programmer Humor
32356 readers
1210 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I'm fine with non-braced blocks, but they must always be on the same line as the parent statement (e.g.
if (a != null) return a
) to visually distinguish them. (inb4 argument about long conditions: they'd usually be spread out over several lines, and the statement would go on the closing parenthese (which is on a line by itself when split over multiple lines))We avoid that, because just at a glance you might not see the function flow change when returns are at the end of lines. It's a minor thing of course.