this post was submitted on 17 Jul 2023
720 points (98.1% liked)
Programmer Humor
32453 readers
1389 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
It wouldn't be such a bad idea if there weren't IDEs that would help you review your code more easily.
Think of a text document you would scan for typos. Sure it would help you to print it out and read it on paper. But finding them with words auto correction is much faster.
This kind of auto correction is also present in IDEs (integrated development environment / the program you use to do the actually coding). You can also jump from one part of your code to another part for a quick lookup or analyze it with its help.
So printing it out not only doesn't let you editing it it also slows down reviewing / debugging / refactoring it.