Changes between Version 5 and Version 6 of GoodCodeExamples


Ignore:
Timestamp:
05/20/09 15:02:21 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v5 v6  
    2222 }}} 
    2323 
    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. 
    2525  * 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.