Changes between Version 30 and Version 31 of Hacking
- Timestamp:
- 12/10/20 18:04:03 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hacking
v30 v31 188 188 }}} 189 189 190 Don not place more than one statement in one line.190 Don't place more than one statement in one line. 191 191 192 192 '''This is right:''' … … 270 270 Don't mix variable declaration and code, declare variable only in the beginning of block. 271 271 272 Split variable declaration and code using one empty line. Avoid using function to initialize variable. Split variable declaration and value assignment. 272 Split variable declaration and code using one empty line. 273 274 Avoid using function to initialize variable. 275 276 Split variable declaration and value assignment. 273 277 274 278 '''This is right:'''