Wiki

Changes between Version 3 and Version 4 of C

Show
Ignore:
Timestamp:
05/03/08 13:57:27 (17 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • C

    v3 v4  
    3131 * constructor/initializer method is called init, has no return value 
    3232  
    33  * String type accessed as '''string''' rather than '''String''' 
    34  * ditto int and uint and float and double types ( rather than Int, UInt, Float, Double) 
    35  * int and uint types all the same naming 
     33 * String type accessed as '''String'''  
     34 * Numeric types specified as int, uint, float and double types ( rather than Int, UInt, Float, Double) 
     35 * Sized int and uint types all have the same naming form 
    3636    * int8, int16, int/int32, int64 instead of  SByte, Int16, Int32/int, Int64 
    3737    * uint8, uint16, uint/uint32, uint64  instead of Byte, UInt16,...  
     
    7777 * numeric for loop uses slice syntax. e.g. for i in 1:10:1  vs for( int i =1; i<=10; i++) 
    7878 
    79  * more to come 
     79 * more as they surface