Changes between Version 13 and Version 14 of C
- Timestamp:
- 09/11/10 20:35:04 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
C
v13 v14 80 80 * Slicing syntax for sequences (Lists and Strings) [start:stop:step] as well as normal library subsequence methods (substring, range, ...) 81 81 * numeric for loop uses slice syntax. e.g. for i in 1:10:1 vs for( int i =1; i<=10; i++) 82 * the Cobra ternary operator has a different syntax: {{{if(<condition>, <texpr>, <fexpr>)}}}. Example at http://cobra-language.com/docs/manual/expressions/if.html 83 82 84 83 85 * more as they surface