Changes between Version 20 and Version 21 of Development/CodeConventions
- Timestamp:
- 03/16/10 07:55:32 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Development/CodeConventions
v20 v21 51 51 52 52 * Most names should use camel case style, but it's ok to use underscores in a postfix when naming different "versions" of a value. For example: 53 54 {{{ 53 {{{ 55 54 let pastaSalad = initialSalad 56 55 pastaSalad_spiced = addSpice pastaSalad "Oregano" … … 58 57 ... 59 58 in ... pastaSalad_baked ... 60 }}}59 }}} 61 60 Avoid using names like `pastaSalad'` and `pastaSalad''`, because the prime doesn't provide any additional documentation. 62 61
