Wiki

Changes between Version 3 and Version 4 of ReleaseNotes_0.9.2

Show
Ignore:
Timestamp:
11/26/12 08:48:32 (12 years ago)
Author:
Charles
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseNotes_0.9.2

    v3 v4  
    1818 * Division 
    1919   * Added `//=` for augmented assignment of integers with "integer division". This corresponds to the binary arithmetic operator `//`. 
    20    * Added error check for using "augmented fractional division" to '''modify''' integers: 
     20   * Added error check for using "augmented fractional division" to ''modify'' integers: 
    2121     * Cannot use fractional division (/=) to modify an integer. Use integer division (//=) instead. 
    2222   * Fixed: The operator `//=` for fractional types does not floor the result like `//` does, making the two operators inconsistent.