lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> > > 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