Changes between Version 4 and Version 5 of Development/CodeConventions
- Timestamp:
- 08/27/09 12:58:55 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Development/CodeConventions
v4 v5 13 13 * Running comments in the bodies of functions are encouraged. Write down what you were expecting the code to do when you wrote it, so it reads like a story. Aim for about 1 comment line every 5-10 code lines, depending on how complex the code is. 14 14 15 * If a function does several things in a regular way, then it should look like it in the source code. This means you should line up arguments to similar function calls. For example, use this15 * If a function does several things in a regular way, then it should look like that in the source code. This means you should line up arguments to similar function calls. For example, use this 16 16 {{{ 17 17 = do someFunction "Monday" (23, 23) (Just 'a')
