Wiki

Changes between Version 13 and Version 14 of C

Show
Ignore:
Timestamp:
09/11/10 20:35:04 (14 years ago)
Author:
gradha
Comment:

Note about ternary operator

Legend:

Unmodified
Added
Removed
Modified
  • C

    v13 v14  
    8080 * Slicing syntax for sequences (Lists and Strings) [start:stop:step] as well as normal library subsequence methods (substring, range, ...) 
    8181 * 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 
    8284 
    8385 * more as they surface