Changes between Version 20 and Version 21 of Hacking
- Timestamp:
- 12/29/11 09:15:22 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hacking
v20 v21 186 186 }}} 187 187 188 === Variable initialization===189 190 Try to avoid using functions to initialize variables. Split variable declaration and value assignment.188 === Variables === 189 190 Declare 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. 191 191 192 192 '''This is right:'''