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

Programmer Humor

35972 readers
103 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
[–] xigoi 22 points 1 year ago (2 children)

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

[–] Faresh@lemmy.ml 4 points 1 year ago* (last edited 1 year 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.

[–] BeardedGingerWonder@feddit.uk -1 points 1 year ago

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

[–] Dirk@lemmy.ml 3 points 1 year ago

Raw adjust with tabs, fine adjust with spaces.

Don't laugh, people are actually doing that.