Programming Quote by Steve McConnell
““Favor read-time convenience to write-time convenience. Code””
About This Quote
Source Book: Code Complete, 2nd Edition, 2004
Prioritize making code easy to read over making it easy to write, because readability aids maintenance and collaboration.
In simple terms: Readability matters more than writing speed.
Write code that others can understand easily.
Themes
Mood
Type
When to use this quote
- code reviews
- team onboarding
- legacy system updates
- pair programming
Key Concepts
Questions to Reflect On
- How does readability affect long‑term project success?
- What trade‑offs are you willing to accept for faster writing?
Readable code may take longer to produce initially.