Changes between Version 7 and Version 8 of ControlSystems/SoftwareTeam/CodingConventions
- Timestamp:
- Oct 31, 2019, 9:09:59 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/CodingConventions
v7 v8 1 1 == Rules to Live (and code) By == 2 2 * Design from the top down, build from the bottom up 3 * Design from the user's perspective: what the program will do (not how it will do it) 4 * Write ''and test'' software starting with the lowest level (closest to the hardware) functions and then put them together into more complex functions. 3 5 * Never put cleverness before clarity 4 6 * when choosing between a clever algorithm and one that will do the job and is easier to understand, use the latter.