this post was submitted on 28 Feb 2024
1005 points (97.0% liked)

Programmer Humor

31998 readers
788 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] 22 points 6 months ago (2 children)

Good. Spaces and tabs for indentation should never be mixed in any language other than Whitespace.

[–] [email protected] 4 points 6 months ago* (last edited 6 months ago) (1 children)

Some people use tabs for indentation and spaces for alignment. It kind of gets the pros of tabs (user configurable indent-width) and the pros of spaces (alignment). That doesn't work in Python where you can't align stuff and the interpreter doesn't allow mixing tabs with spaces, but in other languages it is a possible style.

[–] [email protected] -1 points 6 months ago

There are no pros to tabs. Configure tabs to a number of spaces.

[–] [email protected] 3 points 6 months ago

Raw adjust with tabs, fine adjust with spaces.

Don't laugh, people are actually doing that.