Changes between Version 30 and Version 31 of Hacking


Ignore:
Timestamp:
12/10/20 18:04:03 (3 years ago)
Author:
andrew_b
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Hacking

    v30 v31  
    188188}}} 
    189189 
    190 Don not place more than one statement in one line. 
     190Don't place more than one statement in one line. 
    191191 
    192192'''This is right:''' 
     
    270270Don't mix variable declaration and code, declare variable only in the beginning of block. 
    271271 
    272 Split variable declaration and code using one empty line. Avoid using function to initialize variable. Split variable declaration and value assignment. 
     272Split variable declaration and code using one empty line. 
     273 
     274Avoid using function to initialize variable. 
     275 
     276Split variable declaration and value assignment. 
    273277 
    274278'''This is right:'''