Changes between Version 3 and Version 4 of C
- Timestamp:
- 05/03/08 13:57:27 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
C
v3 v4 31 31 * constructor/initializer method is called init, has no return value 32 32 33 * String type accessed as ''' string''' rather than '''String'''34 * ditto int and uint andfloat and double types ( rather than Int, UInt, Float, Double)35 * int and uint types all the same naming33 * 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 36 36 * int8, int16, int/int32, int64 instead of SByte, Int16, Int32/int, Int64 37 37 * uint8, uint16, uint/uint32, uint64 instead of Byte, UInt16,... … … 77 77 * numeric for loop uses slice syntax. e.g. for i in 1:10:1 vs for( int i =1; i<=10; i++) 78 78 79 * more to come79 * more as they surface