Changes between Version 12 and Version 13 of GoodCodeExamples
- Timestamp:
- 05/20/09 16:22:42 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v12 v13 41 41 } 42 42 }}} 43 * if-else if- else example:43 * if-else if- else example: 44 44 {{{ 45 45 if (a != b) { … … 53 53 } 54 54 }}} 55 * for examples55 * for examples 56 56 {{{ 57 57 for (i = 0; i < n; i++) { … … 64 64 } 65 65 }}} 66 * try-catch-finally... The same as the above as spacing and etc...66 * try-catch-finally... The same as the above as spacing and etc... 67 67 {{{ 68 68 try {