Re: [ANN] Lua 5.3.0 (rc4) now available
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: [ANN] Lua 5.3.0 (rc4) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: 2015年1月13日 09:12:05 -0200
> > > Oops, no I can't. Exponentiation always converts operands to float
> > > too. I guess there's not a good shorthand for large integer constants?
> >
> > 1000? :-)
>
> Easy for that case---no so easy for 2^48.
1<<48 ? (Computed at compile time by constant folding...)
-- Roberto