Changes between Version 16 and Version 17 of GoodCodeExamples


Ignore:
Timestamp:
05/20/09 16:35:03 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v16 v17  
    7777 * We don't have special conventions for naming but don't use long name or stupid ones like "stuff". 
    7878 * Don't leave commented code where you tried something to be reviewed, we will be not very happy. 
     79 * Avoid writing expressions on several lines, instead use variables... but if it's needed for example in statements here are some examples : 
     80  * &&, || must be first on the new line. 
     81{{{ 
     82                                a == b 
     83                                && c == d 
     84                                || b != g 
     85                                && !flag 
     86}}}