Changes between Version 9 and Version 10 of HowtoGoodProgrammingTechniques
- Timestamp:
- Nov 16, 2012, 6:26:44 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowtoGoodProgrammingTechniques
v9 v10 63 63 64 64 65 == Procedure==65 == The 5 steps procedure of coding == 66 66 1. Write the feature and make it to work 67 67 1. Minimize the code (less lines, simple and short functions, less-complex algorithms, etc) 68 68 1. Structure it correctly (spaces/readability, comments, begin-end parts, local variables, etc) 69 1. Document (comment) the needed parts to make it easly understandable, suggestion: use doxygen syntax 69 70 1. Convention names, take some seconds to decide the optimal names for your variables and calls 70 71