Changes between Version 6 and Version 7 of GoodCodeExamples
- Timestamp:
- 05/20/09 15:04:00 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v6 v7 29 29 } 30 30 }}} 31 * Insert spaces between the brackets and the words. 31 * Insert spaces between the brackets and the words. The opening bracket of a statement is on the row where the statement is! 32 {{{ 33 while (some_condition) { 34 // something... 35 } 36 }}}