Changes between Version 3 and Version 4 of Hacking


Ignore:
Timestamp:
02/15/11 17:57:32 (13 years ago)
Author:
angel_il
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Hacking

    v3 v4  
    11 
    22== Code Style == 
     3 
     4* Maximum Line Width is 100 Characters 
     5  The reason is not about people with low-res screens but rather sticking to 100 columns prevents you from easily nesting more than one level of if statements or other code blocks. 
     6 
     7* Use 4 Space Tabs to Indent 
     8  With whitespace fillers. 
     9 
     10* No Trailing Whitespace 
     11 
     12* Follow the GNU-Style guidelines.  We won't go through all of them here. 
     13 
    314 
    415Please use the same indentation as other developers.