[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.3.0 (rc0) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: Thu, 11 Dec 2014 15:18:14 -0200
The only changes in the language from beta to final were these:
- integer division became floor division. (y//y == floor(x/y); like the
other arithmetic operators, if x and y are integers the operation is
performed on integers and the result is an integer; otherwise, the
operation is performed on floats and the result is a float.)
- new function string.packsize
- new option '=' in pack/unpack (default endianness)
- option 'c' in pack/unpack needs an explicit size
-- Roberto