Thursday, December 13, 2012 Beck's rules of simple code
I'm currently reading Clean Code: A Handbook of Agile Software Craftsmanship by Robert C. Martin. The book references Kent Beck's rules of simple code which I thought I would share.
In priority order, simple code:
- Runs all the tests
- Contains no duplication
- Expresses all the design ideas that are in the system
- Minimises the number of entities such as classes, methods, functions, and the like.
I would highly recommend the book to anyone that writes code.
Tags
Comments
Thursday, December 13, 2012 Harit Himanshu
I am reading this book too, it is incredibly useful book and changes the way you write code, definitely recommended to anyone
