Changes between Version 9 and Version 10 of HowtoGoodProgrammingTechniques


Ignore:
Timestamp:
Nov 16, 2012, 6:26:44 AM (12 years ago)
Author:
Thanatermesis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowtoGoodProgrammingTechniques

    v9 v10  
    6363
    6464
    65 == Procedure ==
     65== The 5 steps procedure of coding ==
    66661. Write the feature and make it to work
    67671. Minimize the code (less lines, simple and short functions, less-complex algorithms, etc)
    68681. Structure it correctly (spaces/readability, comments, begin-end parts, local variables, etc)
     691. Document (comment) the needed parts to make it easly understandable, suggestion: use doxygen syntax
    69701. Convention names, take some seconds to decide the optimal names for your variables and calls
    7071