this post was submitted on 01 Mar 2024
369 points (93.2% liked)
Programmer Humor
32396 readers
846 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 think Rust actually is actually among the best in this regard for the simple reason that there is consistency given by the compiler. A simple
cargo fmt
andcargo build
will fix or warn you about everything. I can read into Rust codebases so quickly. C++ was always really exhausting because most of the time you were just getting used to the code style.