Changes between Version 5 and Version 6 of GoodCodeExamples
- Timestamp:
- 05/20/09 15:02:21 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v5 v6 22 22 }}} 23 23 24 * Writing if, else, else if, for, while, do while, try, catch, finally statements .24 * Writing if, else, else if, for, while, do while, try, catch, finally statements, blocks. 25 25 * First of all always put curly brackets after the special word that opens the statement, even if the statement contains one row. 26 {{{ 27 if (some_condition) { 28 System.out.println("pass"); 29 } 30 }}} 31 * Insert spaces between the brackets and the words.