[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (alpha) now available
- From: steve donovan <steve.j.donovan@...>
- Date: Mon, 13 Dec 2010 08:38:23 +0200
On Mon, Dec 13, 2010 at 8:29 AM, Linker <linker.m.lin@gmail.com> wrote:
> Does Lua has a plan to support int64 and long double ?
> Or just support them by using string?
Lua has just one number type, unless you use the LNUM patch.
Usually, people need int64s as IDs; that can be done with custom
userdata. (I tend to pass 64-bit ids around as strings because I don't
need to do arithmetic on them.)
steve d.