Changes between Version 20 and Version 21 of Hacking


Ignore:
Timestamp:
12/29/11 09:15:22 (12 years ago)
Author:
andrew_b
Comment:

Variables

Legend:

Unmodified
Added
Removed
Modified
  • Hacking

    v20 v21  
    186186}}} 
    187187 
    188 === Variable initialization === 
    189  
    190 Try to avoid using functions to initialize variables. Split variable declaration and value assignment. 
     188=== Variables === 
     189 
     190Declare variable only in the beginning of block. Split variable declaration and code using one empty line. Try to avoid using functions to initialize variables. Split variable declaration and value assignment. 
    191191 
    192192'''This is right:'''