Be you Quote by Donald Knuth
“When you write a program, think of it primarily as a work of literature. You're trying to write something that human beings are going to read. Don't think of it primarily as something a computer is going to follow. The more effective you are at making your program readable, the more effective it's going to be: You'll understand it today, you'll understand it next week, and your successors who are going to maintain and modify it will understand it.”
About This Quote
Source Book: The Art of Computer Programming, 1968
Programming should be written like literature, prioritizing readability for humans over machine instructions.
In simple terms: Write code as readable literature.
Write clear, maintainable code.
Themes
Mood
Type
When to use this quote
- code reviews
- team onboarding
- long term projects
Key Concepts
Questions to Reflect On
- How can you balance elegance with performance?
- What practices improve code readability?
May be less efficient for low‑level optimization.