Changes between Version 7 and Version 8 of GoodCodeExamples
- Timestamp:
- 05/20/09 15:05:46 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v7 v8 35 35 } 36 36 }}} 37 * When writing conditions put spaces between the operands and the operators! 38 {{{ 39 if (a != b) { 40 System.out.println("a is not the same as b"); 41 } 42 }}}